Crates.io | redis-om-macros |
lib.rs | redis-om-macros |
version | 0.1.0 |
source | src |
created_at | 2023-04-03 03:57:21.512688 |
updated_at | 2023-04-03 03:57:21.512688 |
description | Proc macros for redis-om |
homepage | https://github.com/kkharji/redis-om |
repository | https://github.com/kkharji/redis-om |
max_upload_size | |
id | 828804 |
size | 98,545 |
A Rust/Redis ORM-style library that simplify the development process and reduce the amount of boilerplate code needed to build programs that leverage redis powerful capabilities and use cases.
Status: WIP, fully testsed, possible breaking changes, stay tuned
Features
rename
, rename_all
or serde
.list.1
or nested models account.balance
as keys).Usage
Roadmap
RedisModels
.HashModel
complex fields using serde.RedisSearch
and provide query-building API.Support validation of struct fields and enum values (most likely using validator library).
.....
redis-om = { version = "*" }
# TLS support with async-std
redis-om = { version = "*", features = ["tls"] }
# async support with tokio
redis-om = { version = "*", features = ["tokio-comp"] }
# async support with async-std
redis-om = { version = "*", features = ["async-std-comp"] }
# TLS and async support with tokio
redis-om = { version = "*", features = ["tokio-native-tls-comp"] }
# TLS support with async-std
redis-om = { version = "*", features = ["async-std-tls-comp"] }
use redis_om::HashModel;
#[derive(HashModel, Debug, PartialEq, Eq)]
struct Customer {
id: String,
first_name: String,
last_name: String,
email: String,
bio: Option<String>,
interests: Vec<String>
}
// Now that we have a `Customer` model, let's use it to save customer data to Redis.
// First, we create a new `Customer` object:
let mut jane = Customer {
id: "".into(), // will be auto generated when it's empty
first_name: "Jane".into(),
last_name: "Doe".into(),
email: "jane.doe@example.com".into(),
bio: Some("Open Source Rust developer".into()),
interests: vec!["Books".to_string()],
};
// Get client
let client = redis_om::Client::open("redis://127.0.0.1/").unwrap();
// Get connection
let mut conn = client.get_connection().unwrap();
// We can save the model to Redis by calling `save()`:
jane.save(&mut conn).unwrap();
// Expire the model after 1 min (60 seconds)
jane.expire(60, &mut conn).unwrap();
// Retrieve this customer with its primary key
let jane_db = Customer::get(&jane.id, &mut conn).unwrap();
// Delete customer
Customer::delete(&jane.id, &mut conn).unwrap();
assert_eq!(jane_db, jane);
redis-om support json data type through redis_om::JsonModel
. It requires that the type
derives serde::Deserialize
as well as serde::Serialize
.
use redis_om::JsonModel;
use serde::{Deserialize, Serialize};
#[derive(Deserialize, Serialize, Debug, PartialEq, Eq)]
struct AccountDetails {
balance: String,
}
#[derive(JsonModel, Deserialize, Serialize, Debug, PartialEq, Eq)]
struct Account {
id: String,
first_name: String,
last_name: String,
details: AccountDetails,
}
// Now that we have a `Account` model, let's use it to save account data to Redis.
// First, we create a new `Account` object:
let mut john = Account {
id: "".into(), // will be auto generated when it's empty
first_name: "John".into(),
last_name: "Doe".into(),
details: AccountDetails {
balance: "1.5m".into(),
}
};
// Get client
let client = redis_om::Client::open("redis://127.0.0.1/").unwrap();
// Get connection
let mut conn = client.get_connection().unwrap();
// We can save the model to Redis by calling `save()`:
john.save(&mut conn).unwrap();
// Expire the model after 1 min (60 seconds)
john.expire(60, &mut conn).unwrap();
// Retrieve this account with its primary key
let john_db = Account::get(&john.id, &mut conn).unwrap();
// Delete customer
Account::delete(&john.id, &mut conn).unwrap();
assert_eq!(john_db, john);
redis-om support json data type through redis_om::StreamModel
. It requires that any nested type to derives redis_om::RedisTransportValue
.
use redis_om::{RedisTransportValue, StreamModel};
/// An enum of room service kind
#[derive(RedisTransportValue)]
pub enum RoomServiceJob {
Clean,
ExtraTowels,
ExtraPillows,
FoodOrder,
}
/// An enum of room service kind
#[derive(StreamModel)]
#[redis(key = "room")] // rename stream key in redis
pub struct RoomServiceEvent {
status: String,
room: usize,
job: RoomServiceJob,
}
// Get client
let client = redis_om::Client::open("redis://127.0.0.1/").unwrap();
// Get connection
let mut conn = client.get_connection().unwrap();
// Create a new instance of Room service Event Manager with consumer group.
// Note: consumer name is auto generated,
// use RoomServiceEventManager::new_with_consumer_name, // for a custom name
let manager = RoomServiceEventManager::new("Staff");
// Ensure the consumer group
manager.ensure_group_stream(&mut conn).unwrap();
// Create new event
let event = RoomServiceEvent {
status: "pending".into(),
room: 3,
job: RoomServiceJob::Clean,
};
// Publish the event to the RoomServiceEvent redis stream
RoomServiceEventManager::publish(&event, &mut conn).unwrap();
// Read with optional read_count: Option<usize>, block_interval: Option<usize>
let read = manager.read(None, None, &mut conn).unwrap();
// Get first incoming event
let incoming_event = read.first().unwrap();
// Get first incoming event data
let incoming_event_data = incoming_event.data::<RoomServiceEvent>().unwrap();
// Acknowledge that you received the event, so other in the consumers don't get it
RoomServiceEventManager::ack(manager.group_name(), &[&incoming_event.id], &mut conn).unwrap();
assert_eq!(incoming_event_data.room, event.room);