Class Summary |
LyFullCache |
This class implements a cache that loads completely the instances of the associated class on
first access to data. |
LyLruCache |
This class implements a LRU (Last recently Used) cache in which objects are stored and unloaded
on the fly, depending to dataSource needs, but n instances are keeped in memory after removing. |
LyNoCache |
This class implements a cache that never contains objects ! |
LyObjectCache |
This class implements a cache that stores objects in memory. |
LySimpleCache |
This class implements a simple cache in which objects are stored and unloaded on the fly,
depending to dataSource needs. |