I understand your point. Durus cache just works for me extremely well.
It has all the advantages of both file and database backends coming
with Django plus the memory-based pythonic cache. Of course I could
live without it. But since I wrote it I don't see any reason to not
use it.
The only bad t
On Wed, 2007-12-26 at 14:01 +1100, Malcolm Tredinnick wrote:
[...]
> In general, the best way to provide something like this for the
> community is to make it available as a third-party application. At the
> moment, that isn't entirely simple, since the Django cache mechanism
> isn't set up to al
On Tue, 2007-12-25 at 13:33 -0800, Ivan Illarionov wrote:
> I use custom cache backend with Django and I want to share it with
> community. The code is very simple:
> http://www.pastethat.com/aNWVB
>
> The main advantage is that it is persistent just like 'db' backend and
> in the same time uses
I use custom cache backend with Django and I want to share it with
community. The code is very simple:
http://www.pastethat.com/aNWVB
The main advantage is that it is persistent just like 'db' backend and
in the same time uses memory which you can fine-tune with cache_size
parameter. I believe th