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 want to use this package to ARC cache for some massive read/write app but value in my case is big > 4M does it possible to store values in files and keys in memory?
The text was updated successfully, but these errors were encountered:
That feature request won't make it to master. It's not really what this library is trying to achieve (being an in-memory, extensible cache library).
With that said, you could consider using an ARC cache to manage your keys and use the underlying filesystem if that's what you want to do. GCache lets you define evict hooks such that removing a file when the corresponding key gets kicked-out should be easy. There are some inefficiencies involved in this hack/solution but I leave it to you to figure if those are tolerable.
If you provide more information I might be able to help you. Good luck!
I want to use this package to ARC cache for some massive read/write app but value in my case is big > 4M does it possible to store values in files and keys in memory?
The text was updated successfully, but these errors were encountered: