How can I delete the cache of my webapp rails?
I'm going to CRAZY!
Running a passenger with nginx, this was the only solution that worked for me. On the server, run:
passenger-config restart-app
See: https://www.phusionpassenger.com/library/admin/nginx/restart_app.html
Try it? Rails.cache.clear
Rails.cache.clear
Perhaps you are using some other cache storage if it rake tmp:cache:cleardoesnโt do this because it is not cached on the file system.
rake tmp:cache:clear