Skip to content
Snippets Groups Projects
Commit a478cd7e authored by Guido Trotter's avatar Guido Trotter
Browse files

Increase the thread size to 5

Now that we use the locking library to make sure running opcodes cannot
step on each other toes we can have a bigger thread size, and
potentially process many opcodes in a parallel manner.

Reviewed-by: iustinp
parent 04864530
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ class IOServer(SocketServer.UnixStreamServer): ...@@ -65,7 +65,7 @@ class IOServer(SocketServer.UnixStreamServer):
cleanup at shutdown. cleanup at shutdown.
""" """
QUEUE_PROCESSOR_SIZE = 1 QUEUE_PROCESSOR_SIZE = 5
def __init__(self, address, rqhandler, context): def __init__(self, address, rqhandler, context):
"""IOServer constructor """IOServer constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment