Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable server side caching in rails production environment

I am about to deploy an application with sensitive data. For that reason, there should not be any data stored to disk. Is there a way to disable server side caching? I could not find any.

like image 999
Majnu Avatar asked Dec 28 '22 11:12

Majnu


1 Answers

I happened to come across this question and am assuming you no longer need an answer. However, I believe what you're looking for is the following:

config.action_controller.perform_caching = false
like image 149
Kris Avatar answered Jan 13 '23 11:01

Kris