-
-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TTL Deletion Hook #103
Comments
|
I was using this to managed locally cached files. I needed a hook to for when an item is deleted from the cache so I can remove them from my temporary directory. This library was too inflexible and I ended up just writing my own. |
I met the same requirements, cached files, and came up with this library in mind. But it seems that I should implement my own cache to play with cached files. |
I need to hook into when a cache item is removed from a TTLCache. It seems that
expire()
doesn't call it's local__delitem__()
or thepopitem()
methods when an item is removed via expiration. Are you interested in a pull request for this feature?The text was updated successfully, but these errors were encountered: