Thanks to visit codestin.com
Credit goes to lib.rs

109 releases (55 breaking)

0.64.2 May 9, 2026
0.63.0 Apr 16, 2026
0.62.0 Mar 27, 2026
0.59.0 Dec 15, 2025
0.7.2 Jul 20, 2022

#89 in Caching

Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App Codestin Search App

175 downloads per month

Apache-2.0

1MB
14K SLoC

logo

project status project stability

Momento Client Library for Rust

Momento Cache is a fast, simple, pay-as-you-go caching solution without any of the operational overhead required by traditional caching solutions. This repo contains the source code for the Momento client library for Rust.

To get started with Momento you will need a Momento Auth Token. You can get one from the Momento Console.

Packages

The Momento Rust SDK package is available on crates.io: momento.

You will need to install additional dependencies to make full use of our SDK:

cargo add momento
cargo add tokio --features full
cargo add futures

Note: you will only need to install futures if you use Momento Topics.

Prerequisites

Usage

Here is a quickstart you can use in your own project:

use momento::cache::{configurations::Laptop, GetResponse};
use momento::{CacheClient, CredentialProvider, MomentoError};
use std::time::Duration;

const CACHE_NAME: &str = "cache";

#[tokio::main]
pub async fn main() -> Result<(), MomentoError> {
    let cache_client = CacheClient::builder()
        .default_ttl(Duration::from_secs(60))
        .configuration(Laptop::latest())
        .credential_provider(CredentialProvider::from_default_env_var_v2()?)
        .build()?;

    cache_client.create_cache(CACHE_NAME.to_string()).await?;

    match cache_client.set(CACHE_NAME, "mykey", "myvalue").await {
        Ok(_) => println!("Successfully stored key 'mykey' with value 'myvalue'"),
        Err(e) => println!("Error: {e}"),
    }

    let value: String = match cache_client.get(CACHE_NAME, "mykey").await? {
        GetResponse::Hit { value } => value.try_into().expect("I stored a string!"),
        GetResponse::Miss => {
            println!("Cache miss!");
            return Ok(()); // probably you'll do something else here
        }
    };
    println!("Successfully retrieved value: {value}");

    Ok(())
}

Getting Started and Documentation

Documentation is available on the Momento Docs website.

Examples

Ready to dive right in? Just check out the example directory for complete, working examples of how to use the SDK.

Developing

If you are interested in contributing to the SDK, please see the CONTRIBUTING docs.


For more info, visit our website at https://gomomento.com!

Dependencies

~25–42MB
~632K SLoC