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
Right now, the brokers/broker_async, which is the async interface to the sync packages like channels/pipe.py and channels/_wire.py... broker calls write_json() behind a lock. write_json serializes AND writes to pipe. But serializing is concurrency safe and could somehow be moved out of the lock to make things faster.
The text was updated successfully, but these errors were encountered:
Right now, the
brokers/broker_async
, which is theasync
interface to the sync packages likechannels/pipe.py
andchannels/_wire.py
... broker callswrite_json()
behind a lock.write_json
serializes AND writes topipe
. But serializing is concurrency safe and could somehow be moved out of the lock to make things faster.The text was updated successfully, but these errors were encountered: