Crates.io | rocketmq |
lib.rs | rocketmq |
version | 5.0.0 |
source | src |
created_at | 2020-08-10 09:30:26.514474 |
updated_at | 2023-08-07 06:51:30.300563 |
description | Rust client for Apache RocketMQ |
homepage | |
repository | https://github.com/apache/rocketmq-clients/tree/master/rust |
max_upload_size | |
id | 274989 |
size | 397,987 |
Here is the rust implementation of the client for Apache RocketMQ. Different from the remoting-based client, the current implementation is based on separating architecture for computing and storage, which is the more recommended way to access the RocketMQ service.
Here are some preparations you may need to know Quick Start.
cargo llvm-cov --ignore-filename-regex pb/ --open
Run the following command to start the example:
# send message via producer
cargo run --example producer
# consume message via simple consumer
cargo run --example simple_consumer