ThreadPool as a default way to make jobs separated into small units #2
Replies: 2 comments 2 replies
-
Is it similar to what ZMQ provides? See https://zeromq.org/socket-api/ and http://api.zeromq.org/master:zmq-inproc |
Beta Was this translation helpful? Give feedback.
-
@IvanChepurnyi
But in terms of general picture, xml merging is performed fast. Maybe there is a room to improve it by 5-10 seconds.
I tried make them async with
That seemed to work with no problems Some thoughts:
Maybe with async approach we can reduce |
Beta Was this translation helpful? Give feedback.
-
I am working right now on a library that is going to facilitate high performant interprocess communication via socket pair and in the future with shared memory. Idea is to make use main process to find files to process and use a thread pool to parse each PHP file and return data back to the main process to build a graph of class dependencies.
Any thoughts are welcome
Beta Was this translation helpful? Give feedback.
All reactions