django中可以使用MemcacheDB替代Memcached吗?
我想使用 MemcacheDB 而不是 Memcached,因为我没有足够的 RAM 用于 Memcached。
它可以与 django 的缓存框架一起使用吗?
我还需要做些什么吗?
I want to use MemcacheDB instead of Memcached because I don't have a lot of RAM for Memcached.
Will it work with django's cache framework?
Is there anything additional I would need to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我认为这应该可行。 MemcacheDB 的整体理念是通过现有且经过测试的 memcache 客户端库提供 BDB 后端。 Django 就位于其之上。
Yes, I think this should just work. The whole idea of MemcacheDB is to give a BDB backend through existing and tested memcache client libraries. Django just sits on top of that.