django-cachalot/docs/todo.rst
Bertrand Bordage 8060030ae2 Typos.
2015-12-18 11:10:54 +01:00

13 lines
725 B
ReStructuredText

What still needs to be done
---------------------------
- Cache raw queries (may not be possible due to database cursors
being written in C)
- Test multi-location caches if possible
- Allow setting ``CACHALOT_CACHE`` to ``None`` in order to disable django-cachalot
persistence. SQL queries would only be cached during transactions, so setting
``ATOMIC_REQUESTS`` to ``True`` would cache SQL queries only during
a request-response cycle. This would be useful for websites with a lot of
invalidations (social network for example), but with several times the same
SQL queries in a single response-request cycle, as it occurs in Django admin.
- Create a command to check clock synchronisation between remote servers