How can I clear the cache on Heroku?
I've tried heroku run rails c
+ Rails.cache.clear
and receive the following error
Errno::ENOENT: No such file or directory @ dir_initialize - /app/tmp/cache/
I also tried heroku run rake tmp:clear
(from this post). The task runs but when I go back into the console and run Rails.cache
, nothing has changed.
How can I clear the cache?