#lock-free #thread-safe #threading #shared-data

pinboard

A lock-free, threadsafe way to publish data, just stick it on the pinboard

10 stable releases

2.2.0 Apr 17, 2023
2.1.0 Nov 1, 2020
2.0.1 Jan 3, 2019
2.0.0 Dec 17, 2017
0.10.0 Jun 5, 2017

#349 in Concurrency

Download history 113/week @ 2024-01-02 86/week @ 2024-01-09 1545/week @ 2024-01-16 448/week @ 2024-01-23 445/week @ 2024-01-30 415/week @ 2024-02-06 1243/week @ 2024-02-13 516/week @ 2024-02-20 458/week @ 2024-02-27 211/week @ 2024-03-05 297/week @ 2024-03-12 901/week @ 2024-03-19 278/week @ 2024-03-26 292/week @ 2024-04-02 463/week @ 2024-04-09 469/week @ 2024-04-16

1,685 downloads per month
Used in 3 crates (2 directly)

MIT license

12KB
240 lines

Pinboard

Crates.io - Pinboard Build Status License: MIT

An eventually-consistent, lock-free, mutable store of shared data.

Just stick it on the pinboard!

Documentation

https://docs.rs/pinboard/

Usage

Install from crates.io by adding pinboard to your Cargo.toml:

[dependencies]
pinboard = "2.0.0"

Now you can create a Pinboard, share it between your users (be they Futures, threads or really anything else) and start sharing data!

use pinboard::NonEmptyPinboard;
use std::{thread, time::Duration};

let weather_report = NonEmptyPinboard::new("Sunny");

crossbeam::scope(|scope| {
  scope.spawn(|_| {
    thread::sleep(Duration::from_secs(10));
    weather_report.set("Raining");
  });
  scope.spawn(|_| {
    loop {
      println!("The weather is {}", weather_report.get_ref());
      thread::sleep(Duration::from_secs(1));
    }
  });
});

Dependencies

~260KB