sabi_redis 0.4.0

The sabi data access library for Redis in Rust
Documentation
// Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
// This program is free software under MIT License.
// See the file LICENSE in this distribution for more details.

//! This crate provides several `DataSrc` and `DataConn` derived structs to enable data access to
//! Redis within the Rust sabi framework.
//! `DataSrc` and `DataConn` derived structs are provided based on the Redis server configuration
//! and whether commands are executed synchronously or asynchronously. They include the following
//! types:
//!
//! ## Features
//!
//! ### Standalone configuration and synchronous commands
//!
//! `RedisDataSrc` and `RedisDataConn` are designed for a standalone Redis server and provide
//! synchronous connections for processing Redis commands.
//!
//! This type requires the `"standalone-sync"` feature to be enabled.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use sabi;
//! #[cfg(feature = "standalone-sync")]
//! use sabi_redis::RedisDataSrc;
//!
//! fn main() -> errs::Result<()> {
//!     #[cfg(feature = "standalone-sync")]
//!     sabi::uses("redis", RedisDataSrc::new("redis://127.0.0.1:6379/10"));
//!
//!     #[cfg(feature = "standalone-sync")]
//!     let _auto_shutdown = sabi::setup()?;
//!
//!     // ...
//!     Ok(())
//! }
//! ```
//!
//! ### Standalone configuration and asynchronous commands
//!
//! `RedisAsyncDataSrc` and `RedisAsyncDataConn` are designed for a standalone Redis server and
//! provide asynchronous connections for processing Redis commands within a Tokio runtime.
//!
//! This type requires the `"standalone-async"` feature to be enabled.
//!
//! #### Example
//!
//! ```ignore
//! use errs;
//! use crate::RedisAsyncDataSrc;
//! use tokio;
//!
//! #[tokio::main]
//! async fn main() -> errs::Result<()> {
//!     sabi::tokio::uses("redis", RedisAsyncDataSrc::new("redis://127.0.0.1:6379/10"));
//!
//!     let _auto_shutdown = sabi_tokio::setup_async().await?;
//!
//!     // ...
//!     Ok(())
//! }
//! ```
//!
//! ### Sentinel configuration and synchronous commands
//!
//! `RedisSentinelDataSrc` and `RedisSentinelDataConn` are designed for a Redis Sentinel setup
//! and provide synchronous connections for processing Redis commands.
//!
//! This type requires the `"sentinel-sync"` feature to be enabled.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use sabi;
//! #[cfg(feature = "sentinel-sync")]
//! use sabi_redis::{RedisSentinelDataSrc, RedisSentinelDataConn};
//!
//! fn main() -> errs::Result<()> {
//!     #[cfg(feature = "sentinel-sync")]
//!     sabi::uses(
//!         "redis",
//!         RedisSentinelDataSrc::new(
//!             vec![
//!                 "redis://127.0.0.1:26479",
//!                 "redis://127.0.0.1:26480",
//!                 "redis://127.0.0.1:26481",
//!             ],
//!             "mymaster",
//!         ),
//!     );
//!
//!     #[cfg(feature = "sentinel-sync")]
//!     let _auto_shutdown = sabi::setup()?;
//!
//!     // ...
//!     Ok(())
//! }
//! ```
//!
//! ### Sentinel configuration and asynchronous commands
//!
//! `RedisSentinelAsyncDataSrc` and `RedisSentinelAsyncDataConn` are designed for a Redis Sentinel
//! setup and provide asynchronous connections for processing Redis commands within a Tokio runtime.
//!
//! This type requires the `"sentinel-async"` feature to be enabled.
//!
//! #### Example
//!
//! ```ignore
//! use errs;
//! use sabi_redis::RedisSentinelAsyncDataSrc;
//! use tokio;
//!
//! #[tokio::main]
//! async fn main() -> errs::Result<()> {
//!     sabi::tokio::uses(
//!         "redis",
//!         RedisSentinelAsyncDataSrc::new(
//!             vec![
//!                 "redis://127.0.0.1:26479",
//!                 "redis://127.0.0.1:26480",
//!                 "redis://127.0.0.1:26481",
//!             ],
//!             "mymaster",
//!         ),
//!     );
//!
//!     let _auto_shutdown = sabi_tokio::setup_async().await?;
//!
//!     // ...
//!     Ok(())
//! }
//! ```
//!
//! ### Cluster configuration and synchronous commands
//!
//! `RedisClusterDataSrc` and `RedisClusterDataConn` are designed for a Redis Cluster setup
//! and provide synchronous connections for processing Redis commands.
//!
//! This type requires the `"cluster-sync"` feature to be enabled.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use sabi;
//! #[cfg(feature = "cluster-sync")]
//! use sabi_redis::{RedisClusterDataSrc, RedisClusterDataConn};
//!
//! fn main() -> errs::Result<()> {
//!     #[cfg(feature = "cluster-sync")]
//!     sabi::uses(
//!         "redis",
//!         RedisClusterDataSrc::new(
//!             vec![
//!                 "redis://127.0.0.1:7000",
//!                 "redis://127.0.0.1:7001",
//!                 "redis://127.0.0.1:7002",
//!             ],
//!         ),
//!     );
//!
//!     #[cfg(feature = "cluster-sync")]
//!     let _auto_shutdown = sabi::setup()?;
//!
//!     // ...
//!     Ok(())
//! }
//! ```
//!
//! ## Transaction Rollback Alternative
//!
//! Redis does not support transactions like relational databases (RDBs) and lacks the ability to
//! roll back updated data. Therefore, when used in conjunction with other databases, an
//! inconsistency can occur if an error happens mid-process: the RDB's updates might be rolled
//! back, but the Redis updates remain. To address this, this crate offers three features to give
//! developers an opportunity to revert updates: *"force back"*, *"pre-commit"* and *"post-commit"*.
//!
//! ### Force Back
//!
//! The `DataConn` derived struct provided by this crate is equipped with the `add_force_back`
//! method. You can use this method to store functions in the `DataConn` that will be executed
//! during the rollback process within `sabi::DataHub::txn`.
//!
//! This is useful for things like deleting newly added data or reverting data that is unlikely to
//! have concurrent updates, such as session data. For data that might have concurrent updates,
//! it would likely require measures like using `WATCH`, `MULTI`, and `EXEC`.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use redis::TypedCommands;
//! use sabi;
//! #[cfg(feature = "standalone-sync")]
//! use sabi_redis::RedisDataConn;
//!
//! #[cfg(feature = "standalone-sync")]
//! trait RedisSampleDataAcc: sabi::DataAcc {
//!     fn data_access_method_with_add_force_back(&mut self, value: i64) -> errs::Result<()> {
//!         let data_conn = self.get_data_conn::<RedisDataConn>("redis")?;
//!         let mut redis_conn = data_conn.get_connection()?;
//!
//!         redis_conn.set("value", value)
//!             .map_err(|e| errs::Err::with_source("fail to set value", e))?;
//!
//!         data_conn.add_force_back(|redis_conn| {
//!             redis_conn.del("value")
//!                 .map_err(|e| errs::Err::with_source("fail to force back value", e))?;
//!             Ok(())
//!         });
//!         Ok(())
//!     }
//! }
//! ```
//!
//! ### Pre-Commit
//!
//! The `DataConn` derived struct provided by this crate is equipped with the `add_pre_commit`
//! method. You can use this method to store functions in the `DataConn` that will be executed
//! right before the commit process within `sabi::DataHub::txn`.
//!
//! By performing Redis updates after all other database updates, you can avoid the need for a
//! rollback if an error occurs with the other databases. This is a good option if you can ensure
//! that the updated data will not be re-fetched within the same transaction.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use redis::TypedCommands;
//! use sabi;
//! #[cfg(feature = "standalone-sync")]
//! use sabi_redis::RedisDataConn;
//!
//! #[cfg(feature = "standalone-sync")]
//! trait RedisSampleDataAcc: sabi::DataAcc {
//!     fn data_access_method_with_add_pre_commit(&mut self, value: i64) -> errs::Result<()> {
//!         let data_conn = self.get_data_conn::<RedisDataConn>("redis")?;
//!         data_conn.add_pre_commit(move |redis_conn| {
//!             redis_conn.set("value", value)
//!                 .map_err(|e| errs::Err::with_source("fail to set value", e))?;
//!             Ok(())
//!         });
//!         Ok(())
//!     }
//! }
//! ```
//!
//! ### Post-Commit
//!
//! The `DataConn` derived struct provided by this crate is equipped with the `add_post_commit`
//! method. You can use this method to store functions in the `DataConn` that will be executed
//! after the commit process within `sabi::DataHub::txn`.
//!
//! Since it's executed after the commit of the updates to other databases is complete, there's no
//! need to consider rolling back Redis updates even if an error occurs with the other database
//! updates. However, you must be aware that if an error occurs during the Redis update itself,
//! the partial updates to Redis cannot be undone, and the other database updates will already be
//! committed. It would be necessary to ensure that the impact on the system is not critical if
//! such a situation occurs, and to enable error detection so that manual recovery can be performed
//! later.
//!
//! #### Example
//!
//! ```rust
//! use errs;
//! use redis::TypedCommands;
//! use sabi;
//! #[cfg(feature = "standalone-sync")]
//! use sabi_redis::RedisDataConn;
//!
//! #[cfg(feature = "standalone-sync")]
//! trait RedisSampleDataAcc: sabi::DataAcc {
//!     fn data_access_method_with_add_pre_commit(&mut self, value: i64) -> errs::Result<()> {
//!         let data_conn = self.get_data_conn::<RedisDataConn>("redis")?;
//!         data_conn.add_post_commit(move |redis_conn| {
//!             redis_conn.set("value", value)
//!                 .map_err(|e| errs::Err::with_source("fail to set value", e))?;
//!             Ok(())
//!         });
//!         Ok(())
//!     }
//! }
//! ```

#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(feature = "standalone-sync")]
mod standalone_sync;

#[cfg(feature = "standalone-sync")]
#[cfg_attr(docsrs, doc(cfg(feature = "standalone-sync")))]
pub use standalone_sync::{RedisDataConn, RedisDataSrc, RedisDataSrcError};

#[cfg(feature = "standalone-async")]
mod standalone_async;

#[cfg(feature = "standalone-async")]
#[cfg_attr(docsrs, doc(cfg(feature = "standalone-async")))]
pub use standalone_async::{RedisAsyncDataConn, RedisAsyncDataSrc, RedisAsyncDataSrcError};

#[cfg(feature = "sentinel-sync")]
mod sentinel_sync;

#[cfg(feature = "sentinel-sync")]
#[cfg_attr(docsrs, doc(cfg(feature = "sentinel-sync")))]
pub use sentinel_sync::{RedisSentinelDataConn, RedisSentinelDataSrc, RedisSentinelDataSrcError};

#[cfg(feature = "sentinel-async")]
mod sentinel_async;

#[cfg(feature = "sentinel-async")]
#[cfg_attr(docsrs, doc(cfg(feature = "sentinel-async")))]
pub use sentinel_async::{
    RedisSentinelAsyncDataConn, RedisSentinelAsyncDataSrc, RedisSentinelAsyncDataSrcError,
};

#[cfg(feature = "cluster-sync")]
mod cluster_sync;

#[cfg(feature = "cluster-sync")]
#[cfg_attr(docsrs, doc(cfg(feature = "cluster-sync")))]
pub use cluster_sync::{RedisClusterDataConn, RedisClusterDataSrc, RedisClusterDataSrcError};

#[cfg(feature = "cluster-async")]
mod cluster_async;

#[cfg(feature = "cluster-async")]
#[cfg_attr(docsrs, doc(cfg(feature = "cluster-async")))]
pub use cluster_async::{
    RedisClusterAsyncDataConn, RedisClusterAsyncDataSrc, RedisClusterAsyncDataSrcError,
};