Disable query caching as it doesn't help performance at all and makes few bugs to appear

This commit is contained in:
DarkPhoenix
2011-05-16 12:27:58 +04:00
parent 95caaf8c8c
commit 148bf226b7

View File

@@ -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"