summaryrefslogtreecommitdiffhomepage
path: root/libs/web
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-09-05 23:24:39 +0000
committerSteven Barth <steven@midlink.org>2008-09-05 23:24:39 +0000
commit40d4e839eff49bc2390537d465c4543105e95f59 (patch)
treedbcfbe0044688a5817ad161ee0c470f5f77da63f /libs/web
parent71d3b7c194a8612b40dea82f6c430b4feb3739cd (diff)
Added bytecodecache
Diffstat (limited to 'libs/web')
-rw-r--r--libs/web/luasrc/cacheloader.lua23
-rw-r--r--libs/web/root/etc/config/luci3
2 files changed, 26 insertions, 0 deletions
diff --git a/libs/web/luasrc/cacheloader.lua b/libs/web/luasrc/cacheloader.lua
new file mode 100644
index 000000000..942c4b7b4
--- /dev/null
+++ b/libs/web/luasrc/cacheloader.lua
@@ -0,0 +1,23 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+]]--
+
+local config = require "luci.config"
+local ccache = require "luci.ccache"
+
+module "luci.cacheloader"
+
+if config.ccache and config.ccache.enable == "1" then
+ ccache.cache_ondemand()
+end \ No newline at end of file
diff --git a/libs/web/root/etc/config/luci b/libs/web/root/etc/config/luci
index 76fa441c8..8b222aaaa 100644
--- a/libs/web/root/etc/config/luci
+++ b/libs/web/root/etc/config/luci
@@ -41,6 +41,9 @@ config internal sauth
option sessionpath "/tmp/.lucisessions"
option sessiontime 3600
+config internal ccache
+ option enable 1
+
config internal template
option compiler_mode file
option compiledir "/tmp/.lucitplcache"