From: Steven Barth Date: Fri, 31 Jul 2009 19:57:07 +0000 (+0000) Subject: Performance improvements, where did that get lost? X-Git-Tag: 0.10.0~1267 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=9827e9110582aa90e145da120f8ed2e1c1ed157a Performance improvements, where did that get lost? --- diff --git a/libs/lucid-http/luasrc/lucid/http/handler/luci.lua b/libs/lucid-http/luasrc/lucid/http/handler/luci.lua index d816aae13..b6d92deec 100644 --- a/libs/lucid-http/luasrc/lucid/http/handler/luci.lua +++ b/libs/lucid-http/luasrc/lucid/http/handler/luci.lua @@ -33,6 +33,7 @@ Luci = util.class(srv.Handler) function Luci.__init__(self, name, prefix) srv.Handler.__init__(self, name) self.prefix = prefix + dsp.indexcache = "/tmp/luci-indexcache" end --- Handle a HEAD request.