Increase the concurrency of DHT requests to 8.
[quix0rs-apt-p2p.git] / apt_p2p / apt_p2p_conf.py
index 0496809e524a906544409eddf8f6f6b61413dab7..98beae7fa237014f39d2372019c6481cf82aaa93 100644 (file)
@@ -23,7 +23,7 @@ class ConfigError(Exception):
     def __str__(self):
         return repr(self.message)
 
-version = versions.Version('apt-p2p', 0, 1, 1)
+version = versions.Version('apt-p2p', 0, 1, 2)
 
 # Set the home parameter
 home = os.path.expandvars('${HOME}')
@@ -97,7 +97,7 @@ DHT_DEFAULTS = {
     
     ### SEARCHING/STORING
     # concurrent xmlrpc calls per find node/value request!
-    'CONCURRENT_REQS': '4',
+    'CONCURRENT_REQS': '8',
     
     # how many hosts to post to
     'STORE_REDUNDANCY': '3',