You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the find and get_all operations all return a list. It would be niceto be able to return something like a list-like class that can do lazy loading of results. Something like an iterable class that can load data in chunks through a callback or by subclassing it and supports most or all operations a list does?
Would probably be very useful in skosprovider_sqlalchemy and skosprovider_getty (provided it's possible to chunk results in the Getty services)? Not much point in using this with a MemoryProvider based backend.
The text was updated successfully, but these errors were encountered:
Currently the
find
andget_all
operations all return a list. It would be niceto be able to return something like a list-like class that can do lazy loading of results. Something like an iterable class that can load data in chunks through a callback or by subclassing it and supports most or all operations a list does?Would probably be very useful in skosprovider_sqlalchemy and skosprovider_getty (provided it's possible to chunk results in the Getty services)? Not much point in using this with a MemoryProvider based backend.
The text was updated successfully, but these errors were encountered: