Following this example Rails ( set_no_cache method) Cannot disable browser caching in Safari and Opera, I try to use these parameters below to prevent caching on browsers
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
It works good with Chrome but not with Safari(14.03). Is there a missing parameter?