Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2014-01-23 16:04:40 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2014-01-23 16:04:40 (GMT)
commitdf9f0880088d85a57036cbf0b3091993056fa8e2 (patch)
tree6503288e17fabe225008d5e8518063e1345286b4
parent47f1ea9d473075774f6825c546566b2ac48ad25b (diff)
Increase default values
-rw-r--r--sugar_network/db/index.py4
-rw-r--r--sugar_network/node/__init__.py2
-rw-r--r--sugar_network/static/httpdocs/favicon.icobin1150 -> 1150 bytes
3 files changed, 3 insertions, 3 deletions
diff --git a/sugar_network/db/index.py b/sugar_network/db/index.py
index ab40527..824423a 100644
--- a/sugar_network/db/index.py
+++ b/sugar_network/db/index.py
@@ -29,11 +29,11 @@ from sugar_network.toolkit import Option, coroutine, exception, enforce
index_flush_timeout = Option(
'flush index index after specified seconds since the last change',
- default=5, type_cast=int)
+ default=60, type_cast=int)
index_flush_threshold = Option(
'flush index every specified changes',
- default=32, type_cast=int)
+ default=1024, type_cast=int)
index_write_queue = Option(
'if active-document is being used for the scheme with one writer '
diff --git a/sugar_network/node/__init__.py b/sugar_network/node/__init__.py
index e9b410f..a4360b4 100644
--- a/sugar_network/node/__init__.py
+++ b/sugar_network/node/__init__.py
@@ -39,7 +39,7 @@ data_root = Option(
find_limit = Option(
'limit the resulting list for search requests',
- default=32, type_cast=int, name='find-limit')
+ default=64, type_cast=int, name='find-limit')
stats_root = Option(
'path to the root directory for placing stats',
diff --git a/sugar_network/static/httpdocs/favicon.ico b/sugar_network/static/httpdocs/favicon.ico
index de355c1..80e42ba 100644
--- a/sugar_network/static/httpdocs/favicon.ico
+++ b/sugar_network/static/httpdocs/favicon.ico
Binary files differ