diff options
-rw-r--r-- | src/mulk/benki/main.clj | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mulk/benki/main.clj b/src/mulk/benki/main.clj index 2135b6f..0395457 100644 --- a/src/mulk/benki/main.clj +++ b/src/mulk/benki/main.clj @@ -31,7 +31,10 @@ (let [response (handler request)] (if (get-in response [:headers "Cache-Control"]) response - (assoc-in response [:headers "Cache-Control"] "no-cache"))))) + (assoc-in response [:headers "Cache-Control"] "must-revalidate") + ;;or: no-cache or: no-store + ;;Which one is the most appropriate? + )))) (do-once ::init (noir.server/add-middleware #(wrap-utf-8 %)) |