#cache #async

shared-expiry-get

Simple concurrent async get with expiration for Rust

3 releases (breaking)

0.2.0 Jan 26, 2021
0.1.0 Jan 8, 2020
0.0.1 May 5, 2019

#487 in Concurrency

Download history 12/week @ 2024-02-18 38/week @ 2024-02-25 7/week @ 2024-03-03 14/week @ 2024-03-10 9/week @ 2024-03-17 3/week @ 2024-03-24 56/week @ 2024-03-31 7/week @ 2024-04-07 6/week @ 2024-04-14

73 downloads per month

MIT license

22KB
466 lines

Simple concurrent async get with expiration for Rust.

Latest Version Docs

shared-expiry-get is a wrapper for accessing and caching a remote data source with some expiration criteria.

Features

  • retrieve only once even if multiple threads are trying to access the remote data at the same time
  • async support
  • update data on expiration

shared-expiry-get does not:

  • retry on error

Example Use Cases

  • cached access of an http source respecting cache control
  • cached access of a file which may get updated

A basic Example

#[derive(Clone)]
struct MyProvider {}
#[derive(Clone)]
struct Payload {}

impl Expiry for Payload {
    fn valid(&self) -> bool {
        true
    }
}

impl Provider<Payload> for MyProvider {
    fn update(&self) -> ExpiryFut<Payload> {
        future::ok::<Payload, ExpiryGetError>(Payload {}).into_future().boxed()
    }
}

async fn main() {
    let rs = RemoteStore::new(MyProvider {});
    let payload = rs.get().await;
    assert!(payload.is_ok());
}

Dependencies

~1–1.7MB
~36K SLoC