[config] fix rql-cache-size initial values (closes #2162160) stable
authorAurelien Campeas <aurelien.campeas@logilab.fr>
Fri, 27 Jan 2012 12:15:57 +0100
branchstable
changeset 8182 d062d3b7da6c
parent 8178 2d62b6017700
child 8185 864fc1f147a4
[config] fix rql-cache-size initial values (closes #2162160)
devtools/fake.py
server/serverconfig.py
--- a/devtools/fake.py	Thu Jan 19 18:44:41 2012 +0100
+++ b/devtools/fake.py	Fri Jan 27 12:15:57 2012 +0100
@@ -41,7 +41,7 @@
         self['auth-mode'] = 'cookie'
         self['uid'] = None
         self['base-url'] = BASE_URL
-        self['rql-cache-size'] = 100
+        self['rql-cache-size'] = 3000
         self.datadir_url = BASE_URL + 'data/'
 
     def cubes(self, expand=False):
--- a/server/serverconfig.py	Thu Jan 19 18:44:41 2012 +0100
+++ b/server/serverconfig.py	Fri Jan 27 12:15:57 2012 +0100
@@ -136,7 +136,7 @@
           }),
         ('rql-cache-size',
          {'type' : 'int',
-          'default': 300,
+          'default': 3000,
           'help': 'size of the parsed rql cache size.',
           'group': 'main', 'level': 3,
           }),