"你正在尝试缓存一个无法序列化为memcached的Ruby对象."

ist*_*ses 3 ruby caching ruby-on-rails ruby-on-rails-3 dalli

我已经遇到了一些在多个站点共享的页脚缓存问题,我想知道可能会出现什么问题.这是错误消息和回溯:

 Cache read: remote_footer_information ({:expires_in=>300 seconds})
 Cache generate: remote_footer_information ({:expires_in=>300 seconds})
 Cache write: remote_footer_information ({:expires_in=>300 seconds})
 Marshalling error for key 'remote_footer_information': no _dump_data is defined for class Proc
 You are trying to cache a Ruby object which cannot be serialized to memcached.

 /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/server.rb:397:in `dump'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/server.rb:397:in `serialize'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/server.rb:269:in `set'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/server.rb:60:in `request'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/options.rb:18:in `block in request'
    /app/vendor/ruby-1.9.3/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/options.rb:17:in `request'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/client.rb:348:in `perform'
    /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.6.4/lib/dalli/client.rb:199:in `set'
    (eval):7:in `block in set_with_newrelic_trace'
    ...
Run Code Online (Sandbox Code Playgroud)

这是定义缓存检索的位置:

require 'httparty'

module Myclassname
  class Footer
    include HTTParty
    format :json
    attr_accessor :response

    def initialize
      @response = Rails.cache.fetch("remote_footer_information", :expires_in => 5.minutes) do
        begin
          self.class.get("http://www.myappname.net/pages/my_footer.json")
        rescue
          false
        end
      end
    end

    def valid?
      unless @response == false || @response.blank?
        return @response['footer'] != nil
      end

      false
    end

    def footer
      unless @response == false || @response.blank?
        return @response['footer']
      end

      nil
    end

  end
end
Run Code Online (Sandbox Code Playgroud)

而这里是视图中被调用的地方.

<%= yield :footer_legend %>

<div class="clearer"></div>
<div class="divider">
</div>

<% response = Myclassname::Footer.new %>
<% if response && response.valid? %>
    <%= response.footer.html_safe %>
<% end %>
Run Code Online (Sandbox Code Playgroud)

我在这做错了什么?任何想法将不胜感激.谢谢!

Mor*_*ori 8

显然,Httparty::Response返回的对象Httparty.get不是可序列化的,需要对其进行高速缓存.尝试缓存您需要的响应部分,例如

response = self.class.get("http://www.myappname.net/pages/my_footer.json")
response['footer'] if response
Run Code Online (Sandbox Code Playgroud)

这里描述这个问题.