I have deployed my RoR app on VPS with Apache2 + Passenger. After configuring the app, when I hit the submit the request from the browser, I get "cache: [GET /] miss" in my apache2/error.log
Please help me understand why am I getting this error. I have been struggling with this error for a day or 2 now.
Thanks, John
Or you can tell rack/cache to shut up in your production.rb:
config.action_dispatch.rack_cache[:verbose] = false
This is an issue with Rack::Cache: cache: [GET /] miss on default Rails application in production mode Rails 3.2.2
Basically Rack::Cache has its logging set to verbose by default, and its log goes into STDERR, and under Apache STDERR goes into the error log.
As far as I understand, this is completely harmless, not it does fill the error log.
Here is the patch for this issue, it has been already merged, so you can either apply it yourself or wait for the next gem update.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With