了解 Django 和 Memcached
你好,我不想问这样一个愚蠢的问题,但我试图更好地理解整个 Django Memcache 过程。
我预计我的网站不会出现大量流量,我是否仍应使用 Memcache?
我相信我明白我必须明确告诉 Memcache 我希望它缓存什么,这是正确的吗?还是它在整个站点范围内进行?
如果我对模型进行更改(假设我编辑博客条目),Memcache 是否会知道“刷新”自身,或者我是否需要手动执行此操作?
谢谢偷看!
Howdy, I hate to ask such a nooberific question but I am trying to understand the whole Django Memcache process better.
I am not expecting a huge amount of traffic on my site, should I still use Memcache?
I believe I understand that I have to explicitly tell Memcache what I want it to cache, is this correct? Or does it do it site wide?
If I make changes to a Model ( Say I edit a blog entry ) will Memcache know to "refresh" itself or do I need to do that manually?
Thanks peeps!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有什么意义。
是的,您需要告诉它要缓存什么。不过,有一个中间件告诉它缓存所有内容。
不,它不会知道。
No, there's not much point.
Yes, you need to tell it what to cache. There is a middleware that tells it to cache everything, though.
No, it won't know.