aboutsummaryrefslogtreecommitdiffstats
path: root/net/http/files.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-05-04 04:48:40 +0200
committerKim Alvefur <zash@zash.se>2019-05-04 04:48:40 +0200
commita371d01137d44a43cbeabe2590174fc36053bb2a (patch)
treee4d34e263be5a93fe2d668d4cac68caab2b0bacb /net/http/files.lua
parent446025683221e23ae3c12abd1e665ea7529e14f9 (diff)
downloadprosody-a371d01137d44a43cbeabe2590174fc36053bb2a.tar.gz
prosody-a371d01137d44a43cbeabe2590174fc36053bb2a.zip
net.http.files: Bump cache hits so they stay cached
It's not an LRU cache unless this is done.
Diffstat (limited to 'net/http/files.lua')
-rw-r--r--net/http/files.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http/files.lua b/net/http/files.lua
index 0b898dc6..090b15c8 100644
--- a/net/http/files.lua
+++ b/net/http/files.lua
@@ -94,6 +94,7 @@ local function serve(opts)
if data and data.etag == etag then
response_headers.content_type = data.content_type;
data = data.data;
+ cache:get(orig_path, data);
elseif attr.mode == "directory" and path then
if full_path:sub(-1) ~= "/" then
local dir_path = { is_absolute = true, is_directory = true };