comparison development.ini @ 6762:716e53c085ff stable

config: clarify that we only recommend and support single threaded operation Sad, but true. Especially because we reuse Repository instances between threads.
author Mads Kiilerich <madski@unity3d.com>
date Tue, 06 Sep 2016 00:51:18 +0200
parents b4dd4c16c12d
children 19af3fef3b34
comparison
equal deleted inserted replaced
6761:25dae19e0719 6762:716e53c085ff
69 69
70 [server:main] 70 [server:main]
71 ## PASTE ## 71 ## PASTE ##
72 #use = egg:Paste#http 72 #use = egg:Paste#http
73 ## nr of worker threads to spawn 73 ## nr of worker threads to spawn
74 #threadpool_workers = 5 74 #threadpool_workers = 1
75 ## max request before thread respawn 75 ## max request before thread respawn
76 #threadpool_max_requests = 10 76 #threadpool_max_requests = 100
77 ## option to use threads of process 77 ## option to use threads of process
78 #use_threadpool = true 78 #use_threadpool = true
79 79
80 ## WAITRESS ## 80 ## WAITRESS ##
81 use = egg:waitress#main 81 use = egg:waitress#main
82 ## number of worker threads 82 ## number of worker threads
83 threads = 5 83 threads = 1
84 ## MAX BODY SIZE 100GB 84 ## MAX BODY SIZE 100GB
85 max_request_body_size = 107374182400 85 max_request_body_size = 107374182400
86 ## use poll instead of select, fixes fd limits, may not work on old 86 ## use poll instead of select, fixes fd limits, may not work on old
87 ## windows systems. 87 ## windows systems.
88 #asyncore_use_poll = True 88 #asyncore_use_poll = True