From dee7484cd49a77e79dcfff28781d85b552496a22 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 26 Feb 2012 11:17:19 +0100 Subject: Switch from must-revalidate to no-store. --- src/mulk/benki/main.clj | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/mulk/benki/main.clj') 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 -- cgit v1.2.3