Rails.cache.increment 之后的 Rails.cache.read 没有给出正确的值
将 Rails 3 与 memcachestore 和 memcache-client gem 结合使用。
macbook-pro 上的本地 memcache 或临时环境中的 memcache 服务器。
当我
Rails.cache.increment(key, 1)
很快(在几行中)执行 a 操作时,
Rails.cache.read(key, :raw => true)
我得到了原始值。如果它停留一秒钟然后我调用 read (或在控制台中),我会得到正确递增的值。
在我的工作中,我使用增量调用的返回值,但这似乎不应该发生。
有什么想法吗?
Using Rails 3 with memcachestore and the memcache-client gem.
Local memcache on a macbook-pro or memcache servers on the staging environment.
When I do a
Rails.cache.increment(key, 1)
followed very quickly (w/in a few lines) by a
Rails.cache.read(key, :raw => true)
I get my original value. If it sits for a second and then I call read (or in the console), I get the correctly incremented value.
As my work around, I'm using the returned value from the increment call, but this doesn't seem like it should be happening.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题在博客文章中有描述
http://thomasmango.com/2009/06/25/ a-better-rails-cache-increment/
建议的修复是:
This problem is described in a blog post
http://thomasmango.com/2009/06/25/a-better-rails-cache-increment/
and the suggested fix is: