Data Percent value | Description |
0 (default value) | This is a 'Pure Hybrid' configuration where all cache data will reside on disk and all metadata will reside in off-heap. The ResourcePool will be used only to store metadata, and can contain metadata for approximately 26 million entries, irrespective of the Cache key type. Evictions will happen when the entries exceed this number. |
50 | 512 MB of the ResourcePool will be used to store cache entries, and the remaining 512 MB to store metadata. The number of entries in the cached data portion is not predictable and depends on Cache key size, data size, operations performed on the Cache etc. The number of entries in the metadata can be computed as approximately 8 million. Evictions will happen when the entries exceed this number. |
95 | 972.8 MB of the ResourcePool will be used to store cache entries, and the remaining 51.2 MB to store metadata. As mentioned above - the number of entries in the cached data portion is not predictable and depends on Cache key size, data size, operations performed on the Cache etc. The number of entries in the metadata can be computed as approximately 0.8 million. Evictions will happen when the entries exceed this number. |