Expand description
Command builders for Redis operations
This module provides type-safe command builders for Redis commands.
Re-exports§
pub use hash::HDelCommand;pub use hash::HExistsCommand;pub use hash::HGetAllCommand;pub use hash::HGetCommand;pub use hash::HLenCommand;pub use hash::HMGetCommand;pub use hash::HMSetCommand;pub use hash::HSetCommand;pub use list::LIndexCommand;pub use list::LLenCommand;pub use list::LPopCommand;pub use list::LPushCommand;pub use list::LRangeCommand;pub use list::LSetCommand;pub use list::RPopCommand;pub use list::RPushCommand;pub use set::SAddCommand;pub use set::SCardCommand;pub use set::SIsMemberCommand;pub use set::SMembersCommand;pub use set::SPopCommand;pub use set::SRandMemberCommand;pub use set::SRemCommand;pub use sorted_set::ZAddCommand;pub use sorted_set::ZCardCommand;pub use sorted_set::ZRangeCommand;pub use sorted_set::ZRankCommand;pub use sorted_set::ZRemCommand;pub use sorted_set::ZRevRankCommand;pub use sorted_set::ZScoreCommand;
Modules§
- hash
- Hash commands for Redis
- list
- Command builders for Redis List operations
- optimized
- Optimized command builders with pre-allocation and caching
- set
- Command builders for Redis Set operations
- sorted_
set - Command builders for Redis Sorted Set operations
Structs§
- Decr
ByCommand - DECRBY command builder
- Decr
Command - DECR command builder
- DelCommand
- DEL command builder
- Exists
Command - EXISTS command builder
- Expire
Command - EXPIRE command builder
- GetCommand
- GET command builder
- Incr
ByCommand - INCRBY command builder
- Incr
Command - INCR command builder
- SetCommand
- SET command builder
- TtlCommand
- TTL command builder
Traits§
- Command
- Trait for commands that can be executed