diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-04 04:48:40 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-04 04:48:40 +0200 |
commit | a371d01137d44a43cbeabe2590174fc36053bb2a (patch) | |
tree | e4d34e263be5a93fe2d668d4cac68caab2b0bacb /net/http | |
parent | 446025683221e23ae3c12abd1e665ea7529e14f9 (diff) | |
download | prosody-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')
-rw-r--r-- | net/http/files.lua | 1 |
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 }; |