
fwiw, rgd Autobahn, the one transport which is missing and I am interested in is: VirtIO
VirtIO would allow zero-copy, not only single-copy - which is already available in Posix via UDS.
to make that a bit more concrete, how could we implement an Autobahn transport for WebSocket - that is an implementation of autobahn.websocket.interfaces.IWebSocketChannel running over VirtIO and using virtqueues, and using epoll for event integration. does Python have proper wrappers for Linux VirtIO / virtqueues already? integrated with epoll in Python? implemented in CPython and in PyPy? if so, let's do it;) I could have my Rust code talk to Python with zero-copy (at least on the Rust side) - and using WebSocket as proper/standard message framing the one aspect I am not sure about: WebSocket provides framing .. as it runs over a byte level transport .. and for WAMP, we wouldn't need that as VirtIO already is message based. if we would go down that road, it'll means providing an implementation of autobahn.wamp.interfaces.ITransport https://github.com/crossbario/autobahn-python/blob/f38f16ba28fa253dee951068c... for VirtIO / virtqueues. anyways, I don't really think it matters much performance wise. I can shift out bytes into memory up to maximum main memory bandwidth limited by hardware in Rust easily, and "almost" in PyPy, but still ..