https://github.com/svenslaggare/ipmq
Interprocess message queue written in Rust
https://github.com/svenslaggare/ipmq
interprocess-communication message-queue rust
Last synced: about 1 year ago
JSON representation
Interprocess message queue written in Rust
- Host: GitHub
- URL: https://github.com/svenslaggare/ipmq
- Owner: svenslaggare
- Created: 2021-06-22T19:58:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-09T16:59:38.000Z (over 4 years ago)
- Last Synced: 2025-01-30T21:14:42.418Z (about 1 year ago)
- Topics: interprocess-communication, message-queue, rust
- Language: Rust
- Homepage:
- Size: 178 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ipmq - Interprocess Message Queue
Message queue system inspired by RabbitMQ for interprocess communications on Linux machines.
## Features
* Routing of messages based on RabbitMQ model, where messages can be sent to multiple queues depending on the routing keys and bindings.
* Uses Unix domain sockets (UDS) for communication. The message data are allocated in shared memory to minimize copies between the producer and consumers.
* Exposes Python3, C & C++ wrapper libraries. See `samples` folder for how to use them.
* Written in Rust.
* Supports only Linux.
## Build instructions
* Requires cargo (https://rustup.rs/) to build.
* Run `build.sh` to build and package the wrapper libraries.