Class | Description |
---|---|
CacheIdentityMap |
Purpose: A fixed size LRU cache
|
CacheKey |
Purpose: Container class for storing objects in an IdentityMap.
|
FullIdentityMap |
Purpose: A FullIdentityMap holds all objects stored within it for the life of the application
|
HardCacheWeakIdentityMap |
Purpose: A weak cache is identical to the weak identity map, however the weak
can be a performance problem for some types of apps because it can cause too much garbage collection
of objects read causing them to be re-read and re-built (this defeats the purpose of the cache).
|
IdentityMap |
Purpose: Caches objects, and allows their retrieval by their primary key.
|
IdentityMapEnumeration |
Used to allow iterating over a map.
|
IdentityMapKeyEnumeration |
Used to allow iterating over a maps cache keys.
|
IdentityMapManager |
Purpose: Maintain identity maps for domain classes mapped with TopLink.
|
LinkedCacheKey |
Purpose: Provides the capability to insert CacheKeys into a Linked List.
|
NoIdentityMap |
Purpose: Provide the capability to not cache objects at all.
|
SoftCacheWeakIdentityMap |
Purpose: A weak cache is identical to the weak identity map, however the weak
can be a performance problem for some types of apps because it can cause too much garbage collection
of objects read causing them to be re-read and re-built (this defeats the purpose of the cache).
|
WeakCacheKey |
Purpose: Container class for storing objects in an IdentityMap.
|
WeakIdentityMap |
Purpose: A WeakIdentityMap holds all objects referenced by the application only.
|
Copyright © 2022. All rights reserved.