Railsのキャッシュで遊んでいます。私の変更は、次の順序で development.rb にありました。
- config.cache_store = :file_store, "#{Rails.root}/tmp/cache"
- config.cache_store = :dalli_store, { :namespace => 'pinukimmm', :expires_in => 1.day, :compress => true }
- config.cache_store = :redis_store, "redis://localhost:6379/0/cache", { expires_in: 90.minutes }
:file_store は、キャッシュなしから大幅に向上しました。約 900% の増加。しかし、その後 :dalli_store を使用して memcached に変更すると、予想外にパフォーマンスがわずかに低下しました。それから、このストアに問題があるのではないかと思い、:redis_store を試してみました。同じ結果です。
ここで何が問題になる可能性がありますか?