From 22c927621c18e384f3f79e53aedda53271d52de2 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 15 Sep 2008 16:49:56 +0000 Subject: [PATCH] Optimized caching behaviour, automatically flush caches in dev environment --- Makefile | 1 + libs/core/luasrc/ccache.lua | 2 +- libs/sgi-cgi/htdocs/cgi-bin/luci | 2 +- libs/web/root/etc/config/luci | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c90f11fc9d..acb6659df6 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ hostcopy: for i in $(MODULES); do cp -a $$i/hostfiles/* host/ -R 2>/dev/null || true; done rm -f host/luci ln -s .$(LUCI_MODULEDIR) host/luci + rm -rf /tmp/luci-* || true hostenv: host ucidefaults diff --git a/libs/core/luasrc/ccache.lua b/libs/core/luasrc/ccache.lua index 437d385256..83e82d9fdc 100644 --- a/libs/core/luasrc/ccache.lua +++ b/libs/core/luasrc/ccache.lua @@ -32,7 +32,7 @@ function cache_ondemand(...) end function cache_enable(cachepath, mode) - cachepath = cachepath or "/tmp/.luciccache" + cachepath = cachepath or "/tmp/luci-modulecache" mode = mode or "r--r--r--" local loader = package.loaders[2] diff --git a/libs/sgi-cgi/htdocs/cgi-bin/luci b/libs/sgi-cgi/htdocs/cgi-bin/luci index cd9bb59660..529d1d0bc5 100755 --- a/libs/sgi-cgi/htdocs/cgi-bin/luci +++ b/libs/sgi-cgi/htdocs/cgi-bin/luci @@ -1,5 +1,5 @@ #!/usr/bin/lua require "luci.cacheloader" require "luci.sgi.cgi" -luci.dispatcher.indexcache = "/tmp/.luciindex" +luci.dispatcher.indexcache = "/tmp/luci-indexcache" luci.sgi.cgi.run() \ No newline at end of file diff --git a/libs/web/root/etc/config/luci b/libs/web/root/etc/config/luci index f78fbb02b9..4e31f9d9bd 100644 --- a/libs/web/root/etc/config/luci +++ b/libs/web/root/etc/config/luci @@ -21,7 +21,7 @@ config extern flash_keep config internal languages config internal sauth - option sessionpath "/tmp/.lucisessions" + option sessionpath "/tmp/luci-sessions" option sessiontime 3600 config internal ccache @@ -29,6 +29,6 @@ config internal ccache config internal template option compiler_mode file - option compiledir "/tmp/.lucitplcache" + option compiledir "/tmp/luci-templatecache" config internal themes -- 2.30.2