37 releases (4 stable)

new 1.1.2 Feb 8, 2025
0.25.0 Feb 2, 2025
0.14.0 Dec 20, 2024
0.12.0 Nov 11, 2024
0.9.0 Jul 3, 2024

#89 in Concurrency

Download history 24/week @ 2024-10-21 17/week @ 2024-10-28 81/week @ 2024-11-04 179/week @ 2024-11-11 7/week @ 2024-11-18 21/week @ 2024-11-25 16/week @ 2024-12-02 57/week @ 2024-12-09 515/week @ 2024-12-16 106/week @ 2024-12-23 586/week @ 2024-12-30 715/week @ 2025-01-06 544/week @ 2025-01-13 657/week @ 2025-01-20 385/week @ 2025-01-27 885/week @ 2025-02-03

2,527 downloads per month

Custom license

140KB
3K SLoC

rs-store

Crates.io Documentation License: MIT

A thread-safe Redux-style state management library implemented in Rust.

Overview

rs-store provides a predictable state container inspired by Redux, featuring thread-safe state management with support for reducers, subscribers, and async actions through Thunk. Unlike traditional Redux, rs-store's reducers can produce side effects, providing more flexibility in state management.

Features

  • ๐Ÿ”’ Thread-safe state management
  • ๐Ÿ“ข Publisher/Subscriber pattern for state changes
  • ๐Ÿ”„ Support for asynchronous operations via Thunk actions
  • ๐Ÿ“Š Side effect handling in reducers
  • ๐Ÿ“Š Middleware handles actions and effects
  • ๐Ÿ“Š Backpressure handling with configurable policies
  • ๐Ÿ”„ Droppable store
  • ๐ŸŽฏ Bounded channel size with sync channels
  • ๐Ÿ”„ Decoupling state updates from notification delivery
  • ๐Ÿ“š State Iterator support
  • ๐Ÿ“š Selector support
  • ๐Ÿ“Š Metrics support
  • ๐Ÿงช Comprehensive test coverage

Installation

Add this to your Cargo.toml:

[dependencies]
rs-store = "1.1"

with the notify-channel feature:

[dependencies]
rs-store = { version = "1.1", features = ["notify-channel"] }

Quick Start

use std::sync::Arc;
use rs_store::{DispatchOp, Dispatcher, FnReducer, FnSubscriber, StoreBuilder};

pub fn main() {
    // new store with reducer
    let store = StoreBuilder::new(0)
        .with_reducer(Box::new(FnReducer::from(|state: &i32, action: &i32| {
            println!("reducer: {} + {}", state, action);
            DispatchOp::Dispatch(state + action, None)
        })))
        .build()
        .unwrap();

    // add subscriber
    store.add_subscriber(Arc::new(FnSubscriber::from(|state: &i32, _action: &i32| {
        println!("subscriber: state: {}", state);
    })));

    // dispatch actions
    store.dispatch(41);
    store.dispatch(1);

    // stop the store
    store.stop();

    assert_eq!(store.get_state(), 42);
}

Feature Details

Backpressure feature

Backpressure is a feature that allows you to control the rate of state updates. and it also can be used to prevent slow subscribers from blocking state updates.

Side Effects in Reducers

Unlike traditional Redux implementations, rs-store allows reducers to produce side effects directly. This means reducers can produce asynchronous operations.

Middleware

Middleware is a powerful feature that allows you to intercept and modify actions before they reach the reducer, or to handle side effects, logging, metrics, etc.

Notification Channel

The notification channel feature provides a dedicated channel for state notifications to subscribers, separating the concerns of state updates and notification delivery.

State Iterator

You can subscribe to a Store to get the state history, But the state iterator feature provides a way to iterate over the state.

Selector

The selector feature provides a way to select a part of the state.

Metrics

The metrics feature provides a way to collect metrics.

Documentation

For detailed documentation, visit:

Implementation Status

In Progress ๐Ÿšง

  • Latest state notification for new subscribers
  • Notification scheduler (CurrentThread, ThreadPool)
  • Stream-based pull model(Iterator)
  • Stop store after all effects are scheduled
  • Separate state interface and implementation
  • drop store after all references are dropped

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Dependencies

~1.3โ€“2MB
~40K SLoC