diff options
-rw-r--r-- | src/mulk/benki/main.clj | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mulk/benki/main.clj b/src/mulk/benki/main.clj index 0395457..f89c9df 100644 --- a/src/mulk/benki/main.clj +++ b/src/mulk/benki/main.clj @@ -31,9 +31,10 @@ (let [response (handler request)] (if (get-in response [:headers "Cache-Control"]) response - (assoc-in response [:headers "Cache-Control"] "must-revalidate") - ;;or: no-cache or: no-store - ;;Which one is the most appropriate? + (assoc-in response [:headers "Cache-Control"] "no-store") + ;; no-cache, no-store, must-revalidate + ;; Which one is the most appropriate? + ;; (is must-revalidate even valid for server responses?) )))) (do-once ::init |