Rails.cache.increment 之后的 Rails.cache.read 没有给出正确的值

发布于 2024-11-03 13:56:16 字数 385 浏览 1 评论 0原文

将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

这个问题在博客文章中有描述
http://thomasmango.com/2009/06/25/ a-better-rails-cache-increment/

建议的修复是:

class Util::Cache
  def self.increment(key, amount = 1)
    if (value = Rails.cache.read(key)).nil?
      Rails.cache.write(key, (value = amount))
    else
      Rails.cache.write(key, (value = value + amount))
    end

    return value
  end

  def self.decrement(key, amount = 1)
    if (value = Rails.cache.read(key)).nil?
      value = 0
    else
      Rails.cache.write(key, (value = value - amount))
    end

    return value
  end
end

This problem is described in a blog post
http://thomasmango.com/2009/06/25/a-better-rails-cache-increment/

and the suggested fix is:

class Util::Cache
  def self.increment(key, amount = 1)
    if (value = Rails.cache.read(key)).nil?
      Rails.cache.write(key, (value = amount))
    else
      Rails.cache.write(key, (value = value + amount))
    end

    return value
  end

  def self.decrement(key, amount = 1)
    if (value = Rails.cache.read(key)).nil?
      value = 0
    else
      Rails.cache.write(key, (value = value - amount))
    end

    return value
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文