Reputation: 24285
I noticed that there are two different projects for using redis for django cache
https://github.com/sebleier/django-redis-cache/
https://github.com/niwibe/django-redis
Is one better known than the other, more of a standard package? I can't decide which to use.
Upvotes: 52
Views: 9609
Reputation: 1098
I am currently using django-redis as cache backend for Redis. I haven't used django-redis-cache so far, but what made me take the decision to use django-redis are the following:
On django-redis documentation site, you can find more reasons to consider it. What I can tell from my experience so far is that I am very happy with django-redis.
Upvotes: 34