webmcp
annotate framework/env/request/allow_caching.lua @ 463:43a4b74b5b18
Bugfix in JSON library: length of array is an integer, not a float (Lua 5.3 distinguishes them)
author | jbe |
---|---|
date | Sat Sep 10 21:34:59 2016 +0200 (2016-09-10) |
parents | fa3a5bba0067 |
children |
rev | line source |
---|---|
jbe@291 | 1 --[[-- |
jbe@291 | 2 request.allow_caching() |
jbe@291 | 3 |
jbe@291 | 4 Includes a "Cache-Control" header in the response that marks the content as cachable. |
jbe@291 | 5 |
jbe@291 | 6 --]]-- |
jbe@291 | 7 |
jbe@291 | 8 function request.allow_caching() |
jbe@291 | 9 request.configure(function() |
jbe@291 | 10 request._cache = true |
jbe@291 | 11 end) |
jbe@291 | 12 end |