From 148bf226b7203252dc42d70090b21e350cae8aa7 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 16 May 2011 12:27:58 +0400 Subject: [PATCH] Disable query caching as it doesn't help performance at all and makes few bugs to appear --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 754f8a016..3c2c59680 100644 --- a/config.py +++ b/config.py @@ -44,7 +44,7 @@ gameDB = os.path.join(staticPath, "eve.db") import eos.config #Caching modifiers, disable all gamedata caching, its unneeded. -eos.config.gamedataCache = True +eos.config.gamedataCache = False # saveddata db location modifier, shouldn't ever need to touch this eos.config.saveddata_connectionstring = "sqlite:///" + saveDB + "?check_same_thread=False" eos.config.gamedata_connectionstring = "sqlite:///" + gameDB + "?check_same_thread=False"