mamenoki

Crates.iomamenoki
lib.rsmamenoki
version0.1.0
sourcesrc
created_at2023-07-12 14:33:33.549377
updated_at2023-07-12 14:33:33.549377
descriptionComplete implementation of a Beanstalkd client based on the Tokio runtime
homepagehttps://github.com/withings/mamenoki
repositoryhttps://github.com/withings/mamenoki
max_upload_size
id914558
size85,541
Withings (withings-sas)

documentation

README

Welcome to Mamenoki!

This is a Rust complete implementation of a Beanstalkd client based on the tokio runtime.

Building and running

Build with :

$ cargo doc --no-deps    # for auto docs
$ cargo build --release  # actual build

Tests

You can run all the tests locally or in a CI environment with:

$ docker compose up all_tests --build

You can continuously run all the tests during the development (they will be re-run at every change) with:

$ docker compose up dev_test_loop --build

Usage examples

There are some usage examples in the examples folder: they all create a connection to beanstalkd and the send different commands to it.

  • reader.rs watches a beanstalk tube, reserves a job and deletes it. You can run it with docker compose up example_reader.
  • writer.rs uses a tube and puts a job into it. You can run it with docker compose up example_reader.
  • stats.rs requests the global beanstalkd stats and the stats for a tube. You can run it with docker compose up example_stats.
Commit count: 47

cargo fmt