Hitbox is an asynchronous caching framework supporting multiple backends and suitable for distributed and for single-machine applications.
[ ] Actix-Web
[ ] In-memory backend
Default cache key implementation based on serde_qs crate and have some restrictions.
Dependencies:
toml
[dependencies]
hitbox = "0.1"
Code:
NOTE: Default cache key implementation based on serde_qs crate and have some restrictions.
First, you should derive [Cacheable] trait for your struct or enum:
```rust use hitbox::prelude::*; use serde::{Deserialize, Serialize};
struct Ping { id: i32, } ``` Or implement that trait manually:
```rust
use hitbox::{Cacheable, CacheError};
struct Ping { id: i32 }
impl Cacheable for Ping {
fn cachekey(&self) -> Result
fn cache_key_prefix(&self) -> String { "Ping".to_owned() }
} ```