mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
Version 0.2.0
This commit is contained in:
parent
5c91cd4cb4
commit
73d38b5d72
2 changed files with 21 additions and 1 deletions
20
CHANGELOG.rst
Normal file
20
CHANGELOG.rst
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
What’s new in django-cachalot?
|
||||
==============================
|
||||
|
||||
0.2
|
||||
---
|
||||
|
||||
- Adds a test suite
|
||||
- Fixes invalidation for data creation/deletion
|
||||
- Stops caching on queries defining ``select`` or ``where`` arguments
|
||||
with ``QuerySet.extra``
|
||||
|
||||
0.1
|
||||
---
|
||||
|
||||
Prototype simply caching all SQL queries reading the database
|
||||
and trying to invalidate them when SQL queries modify the database.
|
||||
|
||||
Has issues invalidating deletions and creations.
|
||||
Also caches ``QuerySet.extra`` queries but can’t reliably invalidate them.
|
||||
No transaction support, no test, no multi-database support, etc.
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = (0, 1, 0, 'post')
|
||||
__version__ = (0, 2, 0)
|
||||
version_string = '.'.join(str(n) for n in __version__)
|
||||
|
|
|
|||
Loading…
Reference in a new issue