Replies: 2 comments 14 replies
-
Changing the interpreter base to things like jython, Rpython or similar would end up in more nad other problems. CPython is good supported and changing the interpreter base may not be the way to go. Pypy is used in our github Actions at the moment. What would be interessting is to test the server, how it handle multiple method requests at once in such a case... |
Beta Was this translation helpful? Give feedback.
-
just out of curiosity: What are you trying to do? use opcua client inside cython code? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!:)
I noticed that in the address space module, all methods are called through the ThreadPoolExecutor wrapper. As you know, CPython limits multithreading by GIL. I would like to know if you tried to use any other interpreters where multithreading is not blocked?
And was there any thought to replace the ThreadPoolExecutor with a multi-process option?
Beta Was this translation helpful? Give feedback.
All reactions