
|
If you were logged in you would be able to see more operations.
|
Google issue summary
|
|
|
|
|
| Component/s: |
Core
|
| Affects Version/s: |
None
|
| Fix Version/s: |
5.1 M2
|
|
|
Time Tracking:
|
|
Original Estimate:
|
1 week
|
|
|
Remaining Estimate:
|
0 minutes
|
|
|
Time Spent:
|
1 week, 2 days, 4 hours
|
|
|
|
|
All returned Document List should be :
- Paginable
- Lazy Loaded (one page at a time)
- Cacheable
This typically applies to :
- getChildren
- search results
|
|
Description
|
All returned Document List should be :
- Paginable
- Lazy Loaded (one page at a time)
- Cacheable
This typically applies to :
- getChildren
- search results
|
Show » |
|
1. Current DocumentModelList will become an iterator (DocumentModelIterator) and used for normal use cases (what is now implemented in the ui).
2. The DocumentModelIterator will load DocumentModels in chunks of configurable size (10, 15 etc) as they are requested by the frontend
3. Maybe implement getters (finders) that will return iterator over DocumentModelList (which are lists consisting of 10, 15 (page size) elements). This lists could be easily cacheable...