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
Not exactly an 'issue' but more of a question.. Is there any easy way to get this running asynchronously? The Sockerserver threading and forking mixins obviously spawn threads/processes for each tcp connection. Is there a dropin async replacement?
The text was updated successfully, but these errors were encountered:
I found no true drop-in replacement, however there is asyncore, an asynchronous socket framework.
I imagine someone could create an asynchronous mixin to be used with SocketServer, this would be a good drop-in replacement of the currently used threading solution.
We could also just use pure asyncore and decouple PyICAP from the SocketServer library so it easily could be used with both.
I'll try to figure out a working example in the near future.
Not exactly an 'issue' but more of a question.. Is there any easy way to get this running asynchronously? The Sockerserver threading and forking mixins obviously spawn threads/processes for each tcp connection. Is there a dropin async replacement?
The text was updated successfully, but these errors were encountered: