You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)?
The text was updated successfully, but these errors were encountered:
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)?
The text was updated successfully, but these errors were encountered: