Cache Management
This section covers cache management.
Client-to-Server Connection Process
It is important to understand the sequence of events that occur when the client connects with a server.
-
You can control cache size through region size limits, cache size limits, or a combination of the two.
Managing the Lifetime of a Cached Object
All cacheable objects derive from
SharedBase
, which provides reference counting. Cacheable objects are referenced usingSharedPtr
types.Using Thread Safety in Cache Management
When you perform structural changes on your cache, such as creating or closing a
Cache
,Pool
, orRegion
, synchronize your operations or do them in a single thread.-
This section provides troubleshooting information for the client.