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
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
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]
The text was updated successfully, but these errors were encountered: