mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-14 12:47:22 -04:00
40f8aadd58
- added READMEs to all examples in each __init__.py and added to sphinx documentation - added versioning example - removed vertical/vertical.py, the dictlikes are more straightforward
9 lines
370 B
Python
9 lines
370 B
Python
"""Large collection example.
|
|
|
|
Illustrates the options to use with :func:`~sqlalchemy.orm.relation()` when the list of related objects is very large, including:
|
|
|
|
* "dynamic" relations which query slices of data as accessed
|
|
* how to use ON DELETE CASCADE in conjunction with ``passive_deletes=True`` to greatly improve the performance of related collection deletion.
|
|
|
|
"""
|