2

最近 Rails を 3.2.2 にアップグレードしましたが、Memcache 関連の問題が発生しているようです...誰か助けてくれませんか?

私の生産構成:

config.serve_static_assets = true
config.static_cache_control = "public, max-age=2592000"
config.assets.digest = true
config.action_controller.perform_caching = true
config.cache_store = :dalli_store
config.action_dispatch.rack_cache = {
 :metastore    => Dalli::Client.new,
 :entitystore  => 'file:tmp/cache/rack/body',
 :allow_reload => false
}

ダリの宝石がバンドルに含まれています

gem 'dalli'

herokus GUI 経由で memcache アドオンを追加しました。

したがって、私のProcfileは次のとおりです(「薄い」gemもインストールされています):

web: bundle exec rails server -p $PORT thin -e $RACK_ENV

しかし、コンソールで単純なキャッシュ メンテナンスを実行しようとしても、次のエラーが発生します。

Loading production environment (Rails 3.2.2)
irb(main):001:0> dc = Dalli::Client.new('localhost:11211')
=> #<Dalli::Client:0x00000007501980 @servers="localhost:11211", @options={}, @ring=nil>
irb(main):002:0> dc.flush_all
localhost:11211 failed (count: 0)
Dalli::NetworkError: localhost:11211 is down:  
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/server.rb:47:in `request'
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/options.rb:18:in `block in request'
    from /usr/local/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/options.rb:17:in `request'
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/client.rb:158:in `block in flush'
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/client.rb:158:in `map'
    from /app/vendor/bundle/ruby/1.9.1/gems/dalli-2.2.1/lib/dalli/client.rb:158:in `flush'
    from (irb):2
    from /app/vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/commands/console.rb:47:in `start'
    from /app/vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/commands/console.rb:8:in `start'
    from /app/vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/commands.rb:41:in `<top (required)>'
    from script/rails:6:in `require'
    from script/rails:6:in `<main>'

もちろん、アセットの提供も失敗しています。

2012-09-29T02:26:29+00:00 app[web.3]: cache error: No server available
2012-09-29T02:26:29+00:00 app[web.3]: /app/vendor/bundle/ruby/1.9.1/gems/thin-1.4.1/lib/thin/connection.rb:80:in `block in pre_process'
2012-09-29T02:26:29+00:00 app[web.3]: /app/vendor/bundle/ruby/1.9.1/gems/eventmachine-1.0.0/lib/eventmachine.rb:187:in `run_machine'
2012-09-29T02:26:29+00:00 app[web.3]: /app/vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/handler/thin.rb:13:in `run'
2012-09-29T02:26:29+00:00 app[web.3]: /app/vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/server.rb:265:in `start'
2012-09-29T02:26:29+00:00 app[web.3]: /app/vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/commands/server.rb:70:in `start'

これは私の設定に問題がありますか? これは Heroku の問題ですか?

4

1 に答える 1

1

デフォルトでこれらのものに設定されているため、これを削除します...

config.action_dispatch.rack_cache = {
 :metastore    => Dalli::Client.new,
 :entitystore  => 'file:tmp/cache/rack/body',
 :allow_reload => false
}

...お使いのバージョンの dalliに最新バージョンのこのコミットがあることを確認したら。

于 2012-09-29T04:54:21.377 に答える