There is no cache expiration. Entries are evicted from the cache only on cache size overflow. Entry deadline may be stored inside the value in order to implement cache expiration.
does this mean FIFO or ALL entries are evicted from the cache?
- 64kb chunks are designed for all values (e.g. 512b values, 1k value etc) or purely for 64kb values only?
e.g. if my values are mostly 512bytes in sizes, should I lower it to 512b instead manually inside the program? and if so, should I also change the values for SetBig (distinct API)?
does this mean FIFO or ALL entries are evicted from the cache?
e.g. if my values are mostly 512bytes in sizes, should I lower it to 512b instead manually inside the program? and if so, should I also change the values for SetBig (distinct API)?