python-diskcache icon indicating copy to clipboard operation
python-diskcache copied to clipboard

Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.

Results 79 python-diskcache issues
Sort by recently updated
recently updated
newest added

After successfully using diskcache for years some of my projects are encountering limits with max-open files, this had been documented here before #133. I have maybe 200 different disk-caches in...

Hi, I have a large diskcache (~600 GB). I used rsync to sync from my local Windows machine to a Linux VM, and I am getting unusual issues on the...

When using `FanoutCache.get` if a timeout or a sqlite error occurs it only returns the provided default which is inconsistent with the documented behaviour when providing [`expire_time=True`](https://grantjenks.com/docs/diskcache/api.html#diskcache.FanoutCache.get): > if True,...

When using the pympler memory profiler's panel for Django debug toolbar, I frequently get this error/traceback: ``` Django Version: 5.2.7 Python Version: 3.12.11 Traceback (most recent call last): File "[redacted]/.venv/lib/python3.12/site-packages/django/core/handlers/exception.py",...

Hi, it would be nice if diskcache directories were tagged with CACHEDIR.TAG to keep them out of backups.

## 📝 Description Docstrings across the cache modules were overly strict about parameter types, omitting that several values—such as `expire`, `tag`, or `directory` could legitimately be None. This led to...

Python first checks __bool__ and then __len__ to determine whether an object is Truthy. Given the fact that an empty cache returns 0 for the length, it breaks checks that...

I am running diskcache in docker to maintain cache between multiple dask workers. In the beginning of the execution I remove the directory (cleaning) and then create new one (fresh...

I know it's incredible unlikely (1/4billion-ish) to get a conflict of a filename, but I think it would still be worth ensuring no key points to the same filename for...