AttributesFactorySetLruEntriesLimit Method |
Sets a limit on the number of entries that will be held in the cache.
If a new entry is added while at the limit, the cache will evict the
least recently used entry.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic void SetLruEntriesLimit(
uint entriesLimit
)
Public Sub SetLruEntriesLimit (
entriesLimit As UInteger
)
public:
void SetLruEntriesLimit(
unsigned int entriesLimit
)
member SetLruEntriesLimit :
entriesLimit : uint32 -> unit
Parameters
- entriesLimit
- Type: SystemUInt32
The limit of the number of entries before eviction starts.
Defaults to 0, meaning no LRU actions will used.
See Also