1 unstable release

0.1.1 May 29, 2021
0.1.0 May 29, 2021
0.0.1 Apr 28, 2021

#228 in Caching

Download history 99/week @ 2024-12-09 38/week @ 2024-12-16 45/week @ 2025-01-06 55/week @ 2025-01-13 146/week @ 2025-01-20 196/week @ 2025-01-27 276/week @ 2025-02-03 465/week @ 2025-02-10 266/week @ 2025-02-17 147/week @ 2025-02-24 39/week @ 2025-03-03 34/week @ 2025-03-10 54/week @ 2025-03-17 34/week @ 2025-03-24

171 downloads per month
Used in hitbox-actix

MIT license

65KB
1.5K SLoC

hitbox

Build status Coverage Status

Hitbox is an asynchronous caching framework supporting multiple backends and suitable for distributed and for single-machine applications.

Framework integrations

Features

  • Automatic cache key generation.
  • Multiple cache backend implementations:
  • Stale cache mechanics.
  • Cache locks for dogpile effect preventions.
  • Distributed cache locks.
  • Detailed metrics out of the box.

Backend implementations

  • Redis
  • In-memory backend

Feature flags

  • derive - Support for Cacheable trait derive macros.
  • metrics - Support for metrics.

Restrictions

Default cache key implementation based on serde_qs crate and have some restrictions.

Documentation

Example

Dependencies:

[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:

use hitbox::prelude::*;
use serde::{Deserialize, Serialize};

#[derive(Cacheable, Serialize)] // With features=["derive"]
struct Ping {
    id: i32,
}

Or implement that trait manually:

use hitbox::{Cacheable, CacheError};
struct Ping { id: i32 }
impl Cacheable for Ping {
    fn cache_key(&self) -> Result<String, CacheError> {
        Ok(format!("{}::{}", self.cache_key_prefix(), self.id))
    }

    fn cache_key_prefix(&self) -> String { "Ping".to_owned() }
}

Dependencies

~12MB
~200K SLoC