Memcached 在测试环境中禁用?
例如,我在专用服务器上有一个实时站点,在子文件夹中有一个测试站点?
有没有办法在测试站点上禁用 memcached,因为我不希望我在测试站点上所做的事情影响实时站点上的内存缓存。
For example I have on a dedicated server a live site and in a sub folder a test site?
Is there a way to disable memcached on test site because I don't want that thing I make on test site to affect memory cache on live site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的环境/test.rb 中,
添加此行 config.cache_store = :null_store 以禁用缓存。
In your environments/test.rb,
add this line config.cache_store = :null_store in order to disable the caching.