mod_http_files: Only serve cached data if etag is unchanged.

This commit is contained in:
Kim Alvefur 2012-12-21 08:25:09 +01:00
parent 0ff07edb45
commit f098458b69

View file

@ -73,7 +73,7 @@ function serve_file(event, path)
end end
local data = cache[path]; local data = cache[path];
if data then if data and data.etag == etag then
response_headers.content_type = data.content_type; response_headers.content_type = data.content_type;
data = data.data; data = data.data;
elseif attr.mode == "directory" then elseif attr.mode == "directory" then
@ -105,7 +105,7 @@ function serve_file(event, path)
end end
end end
data = "<!DOCTYPE html>\n"..tostring(html); data = "<!DOCTYPE html>\n"..tostring(html);
cache[path] = { data = data, content_type = mime_map.html; hits = 0 }; cache[path] = { data = data, content_type = mime_map.html; etag = etag; };
response_headers.content_type = mime_map.html; response_headers.content_type = mime_map.html;
end end
@ -120,7 +120,7 @@ function serve_file(event, path)
end end
local ext = path:match("%.([^./]+)$"); local ext = path:match("%.([^./]+)$");
local content_type = ext and mime_map[ext]; local content_type = ext and mime_map[ext];
cache[path] = { data = data; content_type = content_type; }; cache[path] = { data = data; content_type = content_type; etag = etag };
response_headers.content_type = content_type; response_headers.content_type = content_type;
end end