# HG changeset patch # User Matthew Wild # Date 1449159164 0 # Node ID e3be91ccca05abc5051b8f1c481719dda4bfb5cb # Parent bd76e73a20c688943150d9f980e9d379e21c1f35 net.http.server: Import util.cache diff -r bd76e73a20c6 -r e3be91ccca05 net/http/server.lua --- a/net/http/server.lua Thu Dec 03 16:17:40 2015 +0100 +++ b/net/http/server.lua Thu Dec 03 16:12:44 2015 +0000 @@ -11,6 +11,7 @@ local xpcall = xpcall; local traceback = debug.traceback; local tostring = tostring; +local cache = require "util.cache"; local codes = require "net.http.codes"; local _M = {};