diff options
Diffstat (limited to 'src/config.py')
| -rw-r--r-- | src/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py index 18c136b..e72477e 100644 --- a/src/config.py +++ b/src/config.py @@ -1,7 +1,8 @@ # generic BUFFER_LENGTH = 65536 # 64 KiB BUFFER_MAX_SIZE = 2**30 * 0.5 # 512 MiB -CLIENT_MAX_AMOUNT = 64 +CLIENT_MAX_AMOUNT = 512 # max requests at once, after which the connections are dropped +CLIENT_MAX_PROCESS = 32 # max processing threads at once # API API_FILE_RANDOM_MIN_SIZE_LIMIT = 1 # 1 byte |