iceoryx2 v0.9 released: Fast and Robust Inter-Process Communication (IPC) Library
Hello everyone
We released iceoryx2 v0.9 tonight. With the release, we are pushing more and more iceoryx2 into the embedded world. We have written a test runner that runs on std and no_std environments, stabilized the decentralized recovery, and added a ton of quality of life improvements.
* blog article: https://ekxide.io/blog/iceoryx2-0.9-release
* repo: https://github.com/eclipse-iceoryx/iceoryx2
* roadmap: https://github.com/eclipse-iceoryx/iceoryx2/blob/main/ROADMAP.md
* crates-io: https://crates.io/crates/iceoryx2
* docs-rs: https://docs.rs/iceoryx2/latest/iceoryx2
For those who haven’t heard of it yet: iceoryx2 is a zero-copy inter-process communication library.
The basic idea is: instead of serializing data, copying it through sockets, pipes, message queues, or some broker process, iceoryx2 lets processes communicate via shared memory. That makes it useful when you care about latency, throughput, or moving large amounts of data between processes without wasting CPU cycles on copies.
It supports C, C++, Python, Rust, and C#, and runs on Linux, macOS, Windows, FreeBSD, and QNX, with experimental support for Android and VxWorks.
It is not limited to plain pub/sub either. iceoryx2 supports publish-subscribe, events, request-response streams, and a blackboard pattern, which is basically a key-value repository directly in shared memory.
The architecture is fully decentralized: no central broker, no daemon that everything depends on, and no single process that becomes the obvious bottleneck or failure point.
Happy to answer questions about the release, the no_std work, or zero-copy IPC in general.
We released iceoryx2 v0.9 tonight. With the release, we are pushing more and more iceoryx2 into the embedded world. We have written a test runner that runs on std and no_std environments, stabilized the decentralized recovery, and added a ton of quality of life improvements.
* blog article: https://ekxide.io/blog/iceoryx2-0.9-release
* repo: https://github.com/eclipse-iceoryx/iceoryx2
* roadmap: https://github.com/eclipse-iceoryx/iceoryx2/blob/main/ROADMAP.md
* crates-io: https://crates.io/crates/iceoryx2
* docs-rs: https://docs.rs/iceoryx2/latest/iceoryx2
For those who haven’t heard of it yet: iceoryx2 is a zero-copy inter-process communication library.
The basic idea is: instead of serializing data, copying it through sockets, pipes, message queues, or some broker process, iceoryx2 lets processes communicate via shared memory. That makes it useful when you care about latency, throughput, or moving large amounts of data between processes without wasting CPU cycles on copies.
It supports C, C++, Python, Rust, and C#, and runs on Linux, macOS, Windows, FreeBSD, and QNX, with experimental support for Android and VxWorks.
It is not limited to plain pub/sub either. iceoryx2 supports publish-subscribe, events, request-response streams, and a blackboard pattern, which is basically a key-value repository directly in shared memory.
The architecture is fully decentralized: no central broker, no daemon that everything depends on, and no single process that becomes the obvious bottleneck or failure point.
Happy to answer questions about the release, the no_std work, or zero-copy IPC in general.