You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid copying between the Task Server and Thinker may outweigh the need to avoid the GIL in some cases. I have the FuncXTaskServer clearly in mind here, where the only think it does is communicate to another server.
As pointed out by @gpauloski , shared memory between the Task Server/Thinker will be especially useful as we can start resolving object proxies as soon as they are received by the task server.
We will need to implement Thread Queue support (#36) before addressing this issue.
The text was updated successfully, but these errors were encountered:
An idea on implementation that will also open up #119 : Do not subclass Process but, instead, provide a start_server method which takes a queue as an argument. This will fix the issues with have with multiprocessing queues and pickling.
Avoid copying between the Task Server and Thinker may outweigh the need to avoid the GIL in some cases. I have the FuncXTaskServer clearly in mind here, where the only think it does is communicate to another server.
As pointed out by @gpauloski , shared memory between the Task Server/Thinker will be especially useful as we can start resolving object proxies as soon as they are received by the task server.
We will need to implement Thread Queue support (#36) before addressing this issue.
The text was updated successfully, but these errors were encountered: