Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,有像 hazelcast 这样的缓存。
那么在 django 缓存类型中有哪些?
哪个是最优选的?
Django 中有多种类型的缓存:
模板缓存、数据库缓存、文件系统缓存、像 Memcached 或 Redis 这样的缓存......我认为你必须更深入地了解你想要缓存的内容......不要仅仅因为你认为你需要它而做缓存,当你真正需要的时候去做它,因为它可能会变得棘手。
看看这个链接:
https://docs.djangoproject.com/en/dev/topics/cache/