aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_files.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-07-11 12:17:59 +0200
committerKim Alvefur <zash@zash.se>2016-07-11 12:17:59 +0200
commit1d46e953aad489bcf2e718b7d140ab79d1879204 (patch)
treea7586c88c7c59052ea491c921c10246c7353877c /plugins/mod_http_files.lua
parent99ba4462fc442388fc425c00792b1207101ed5bb (diff)
downloadprosody-1d46e953aad489bcf2e718b7d140ab79d1879204.tar.gz
prosody-1d46e953aad489bcf2e718b7d140ab79d1879204.zip
mod_http_files: Switch to use util.cache for cache
Diffstat (limited to 'plugins/mod_http_files.lua')
-rw-r--r--plugins/mod_http_files.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/mod_http_files.lua b/plugins/mod_http_files.lua
index 40f46c9c..a710679b 100644
--- a/plugins/mod_http_files.lua
+++ b/plugins/mod_http_files.lua
@@ -17,6 +17,7 @@ local build_path = require"socket.url".build_path;
local path_sep = package.config:sub(1,1);
local base_path = module:get_option_string("http_files_dir", module:get_option_string("http_path"));
+local cache_size = module:get_option_number("http_files_cache_size", 128);
local dir_indices = module:get_option("http_index_files", { "index.html", "index.htm" });
local directory_index = module:get_option_boolean("http_dir_listing");
@@ -81,7 +82,7 @@ function sanitize_path(path)
return "/"..table.concat(out, "/");
end
-local cache = setmetatable({}, { __mode = "kv" }); -- Let the garbage collector have it if it wants to.
+local cache = require "util.cache".new(cache_size);
function serve(opts)
if type(opts) ~= "table" then -- assume path string
@@ -119,7 +120,7 @@ function serve(opts)
return 304;
end
- local data = cache[orig_path];
+ local data = cache:get(orig_path);
if data and data.etag == etag then
response_headers.content_type = data.content_type;
data = data.data;
@@ -157,7 +158,7 @@ function serve(opts)
end
local ext = full_path:match("%.([^./]+)$");
local content_type = ext and mime_map[ext];
- cache[orig_path] = { data = data; content_type = content_type; etag = etag };
+ cache:set(orig_path, { data = data; content_type = content_type; etag = etag });
response_headers.content_type = content_type;
end