tree: 5eadc1c6b30237d53e0c853c86cc1bc01dfd9057 [path history] [tgz]
  1. examples/
  2. src/
  3. build.rs
  4. Cargo.toml
  5. README.md
rust/README.md

The Rust Implementation of Apache RocketMQ Client

RocketMQ Website

Overview

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 (or refer to here).

Getting Started

Requirements

  1. rust and cargo
  2. protoc 3.15.0+
  3. setup name server, broker, and proxy.

Run Example

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