From 40d4e839eff49bc2390537d465c4543105e95f59 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 5 Sep 2008 23:24:39 +0000 Subject: Added bytecodecache --- libs/web/luasrc/cacheloader.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libs/web/luasrc/cacheloader.lua (limited to 'libs/web/luasrc') diff --git a/libs/web/luasrc/cacheloader.lua b/libs/web/luasrc/cacheloader.lua new file mode 100644 index 0000000000..942c4b7b48 --- /dev/null +++ b/libs/web/luasrc/cacheloader.lua @@ -0,0 +1,23 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth +Copyright 2008 Jo-Philipp Wich + +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 -- cgit v1.2.3