Ration
A shared memory library for Rust. Useful for interprocess communication (IPC) through message-passing, sharing data structures, etc.
Features
- Performance.
Shared memory is as fast as you can get with IPC.
- Flexibility.
rationprovides simple data types that can be used in a variety of ways.
Examples
- The obligatory "Hello, world!" program that passes a single character string from server to client.
- A simple channel type that passes messages between server and client.