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 just want to ask what would you recommend to fake functionality of delete_matched for ActiveSupport::Cache::DalliStore the only solution that I found is :
Also, I kinda get that Dalli doesn't have any build in functionality to match keys so that application need to do it manually, however it seems to me strange why. Could you explain it to me why ?
The text was updated successfully, but these errors were encountered:
But... it seems each time you store a key, the dalli-delete-matched gem reads and rewrites an array of all keys, which can slow down a lot and limit the benefits of cache.
Memcached doesn't allow listing keys, so this feature has to be managed by your self. Maybe that's why it's not implemented in DalliStore.
Hi,
I just want to ask what would you recommend to fake functionality of
delete_matched
forActiveSupport::Cache::DalliStore
the only solution that I found is :...would you go with this ?
Also, I kinda get that Dalli doesn't have any build in functionality to match keys so that application need to do it manually, however it seems to me strange why. Could you explain it to me why ?
The text was updated successfully, but these errors were encountered: