From 6c7373b826f14b40da089d39b7f725319deee431 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 26 Feb 2012 03:00:50 +0100 Subject: Switch from no-cache to must-revalidate. --- src/mulk/benki/main.clj | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/mulk/benki/main.clj') 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 %)) -- cgit v1.2.3