cashier
This is a module for Key Value caching. Provides cache operation through the same interface for various data sources. Features currently provided include in-memory, redis, and AWS dynamo.
features
dynamo: AWS DynamoDBredis: Redis
install
If you want to use only the dynamo feature, install it as follows.
[dependencies]
cashier = { version = "0.1.0", features = ["dynamo"] }
If you want to use all features, use "full".
[dependencies]
cashier = { version = "0.1.0", features = ["full"] }
Basic
use ;
async