webmcp

view framework/env/request/set_cache_time.lua @ 502:fa902b26589f

Removed endianess detection from moonhash_sha.c and created byteorder.h for that purpose instead
author jbe
date Mon Aug 14 12:07:37 2017 +0200 (2017-08-14)
parents fa3a5bba0067
children
line source
1 --[[--
2 request.set_cache_time(
3 seconds -- duration in seconds
4 )
6 Sets the expiration timeout for static content.
8 --]]--
10 function request.set_cache_time(seconds)
11 request.configure(function()
12 request._cache_time = seconds
13 end)
14 end

Impressum / About Us