fastcache
fastcache copied to clipboard
Can you pls clarify... new set items, does it move to the front with the old set item still inside cache or...?
Can you pls clarify... new set items, does it move to the front with the old set item still inside cache or...?
both same key cache new = key -> valueNew cache old = key -> valueOld
Before fastcache = [cacheOld -> valueOld]
After e.g. fastcache = [ cache new -> valueNew, cache old -> valueOld] or fastcache = [cache new -> valueNew]
-
i'm curious over this issue as well, does anyone know? because trying to use as a in memory storage. not sure if consistently writing a lot of same key will evict the other keys.
-
will upgrade to fastcache in future versions stick to same strategy or use another eviction method? just curious over direction