cache3 icon indicating copy to clipboard operation
cache3 copied to clipboard

A safe and lightweight cache library, written in pure-Python.

Results 5 cache3 issues
Sort by recently updated
recently updated
newest added

``` import cache3 cache3.DiskCache(directory='.cache3/deeper_dir') ``` leads to FileNotFoundError if ".cache3" does not exist Traceback Traceback (most recent call last): File "C:\Users\u\PycharmProjects\test\main.py", line 2, in cache3.DiskCache(directory='.cache3/cache3') File "C:\Users\u\AppData\Local\pypoetry\Cache\virtualenvs\xxx\lib\site-packages\cache3\disk.py", line 194, in...

According to documentation Cache should support tags. But it appears that cache.keys(tag="tag") returns empty iterator. DiskCache behaviour is as expected. python 3.12.1 cache3 0.4.3 ``` from cache3 import Cache, DiskCache...

Hi, @StKali Is it possible to add a way to delete the cache by tag instead of requiring a strong binding between key and tag, this may be an insecure...

A search/grep through the source indicates that `SafeCache` does no longer exist. It somehow got refactored after `v0.3.3` release, see [this commit](https://github.com/StKali/cache3/commit/95463537c664f8bcd830c6a33d1c4822ea7196ca)). As the quickstart is mentioning `SafeCache`, it should...