Thanks James. > On 19 Jun 2015, at 10:53, James Reeves <[email protected]> wrote: > > Ring doesn't set any caching headers unless you add in middleware to do so. > > The most common middleware is wrap-not-modified, which returns a 304 response > if the etag or last-modified dates indicate the resource hasn't been > modified. For resources in jar files, the last-modified date is set to the > modification date of the containing jar. > > You could add some middleware to force the browser not to cache resources via > the cache-control header (see here > <https://stackoverflow.com/questions/49547/making-sure-a-web-page-is-not-cached-across-all-browsers>), > or if this is just for development, then Chrome at least has a checkbox in > the developer tools for disabling caching. > > - James > > On 19 June 2015 at 10:00, Colin Yates <[email protected] > <mailto:[email protected]>> wrote: > Hi all, is there a quick way to disable caching for everything or > alternatively hash based on the contents of the resource. I am talking > specifically about CSS and javascript issues served from the JAR's class path? > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > <mailto:[email protected]> > Note that posts from new members are moderated - please be patient with your > first post. > To unsubscribe from this group, send email to > [email protected] > <mailto:clojure%[email protected]> > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > <http://groups.google.com/group/clojure?hl=en> > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. > > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with your > first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > <http://groups.google.com/group/clojure?hl=en> > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>.
-- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
