Blackcorvius
Blackcorvius

Reputation: 1

What kind of Django has caches

For example, there are caches like hazelcast.

So in django cache types which have ?

Whichever is most preferably ?

Upvotes: -2

Views: 98

Answers (1)

Javier Vieira
Javier Vieira

Reputation: 2140

There are many type of caches in Django:

Template cache, DB cache, Filesystem cache, cache like Memcached or Redis... I think you have to go deeper on what you want to cache... dont do cache only because you think you need it, do it when you really need it, since it can become tricky.

take a look at this link:

https://docs.djangoproject.com/en/dev/topics/cache/

Upvotes: 0

Related Questions