Files
sqlalchemy/examples/large_collection/__init__.py
T
Mike Bayer 40f8aadd58 - mega example cleanup
- 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
2010-01-19 00:53:12 +00:00

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.
"""