johnny-cache icon indicating copy to clipboard operation
johnny-cache copied to clipboard

johnny cache django caching framework

Results 36 johnny-cache issues
Sort by recently updated
recently updated
newest added

closes #57 I've added a setting to allow developers to disable caching on COUNT queries.

As described in cache-machine's docs (http://cache-machine.readthedocs.org/en/latest/#count-queries), `COUNT` queries are not reliably invalidated and are not consistent.

Is it posible to return the cache keys for a given queryset? I want to reuse johnny-cache's keys to cache the entire response in memcache. Thanks

OK this is not really an issue but a question. Doing maintenance on a django 1.3.1 app. We took over from a different company. In the settings.py file, I just...

Hi There, Using pycharm with with a pip source pull will cause issues with the test runner because you have a settings file defined in the top level. Please remove...

In cache.py:KeyHandler.get_multi_generation(...) a key is formed by mixing the current generations of all the tables involved. This means that if any of the tables are updated a new key will...

Johnny does not properly work with F() expression when it comes to dates, here is an example: ``` python >>> from django.db.models import F >>> from johnny import cache >>>...

Hi, Do I need to restart memcache after I perform a database migration using `South`? What happens to stale cache entries that may not reflect the latest changes in the...

I have the following in my `proj/__init__.py`: ``` from johnny.cache import enable enable() ``` I find that if I spawn an async `celery` task in `./manage.py shell`, the cache will...