#twilight #discord-api #discord

twilight-cache-inmemory

In-process-memory based cache for the Twilight ecosystem

72 releases

0.16.0-rc.1 Feb 21, 2024
0.15.4 Sep 10, 2023
0.15.2 Apr 27, 2023
0.15.1 Feb 26, 2023
0.2.3 Nov 29, 2020

#18 in Caching

Download history 85/week @ 2024-01-22 141/week @ 2024-01-29 126/week @ 2024-02-05 200/week @ 2024-02-12 257/week @ 2024-02-19 373/week @ 2024-02-26 170/week @ 2024-03-04 168/week @ 2024-03-11 221/week @ 2024-03-18 133/week @ 2024-03-25 409/week @ 2024-04-01 129/week @ 2024-04-08 484/week @ 2024-04-15 262/week @ 2024-04-22 171/week @ 2024-04-29 126/week @ 2024-05-06

1,060 downloads per month
Used in 7 crates (6 directly)

ISC license

1.5MB
37K SLoC

twilight-cache-inmemory

codecov badge discord badge github badge license badge rust badge

twilight-cache-inmemory is an in-process-memory cache for the twilight-rs ecosystem. It's responsible for processing events and caching things like guilds, channels, users, and voice states.

Statistics

Statistics can be an important debugging tool for determining how large a cache is or determining whether a cache has an expected amount of resources within it. An interface for retrieving statistics about the amount of a resource within the cache as a whole or on a guild-level can be retrieved via InMemoryCache::stats.

Features

By default no feature is enabled.

permission-calculator

The permission-calculator feature flag will bring in support for the PermissionCalculator; an API for calculating permissions through it is exposed via InMemoryCache::permissions. Support for calculating the permissions of a member on a root guild-level and in a guild channel is included.

Refer to the permission module for more documentation.

Examples

Update a cache with events that come in through the gateway:

use std::{env, error::Error};
use twilight_cache_inmemory::DefaultInMemoryCache;
use twilight_gateway::{EventTypeFlags, Intents, Shard, ShardId, StreamExt as _};

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    // Initialize the tracing subscriber.
    tracing_subscriber::fmt::init();

    let token = env::var("DISCORD_TOKEN")?;
    let mut shard = Shard::new(ShardId::ONE, token, Intents::GUILD_MESSAGES);

    // Create a cache, caching up to 10 messages per channel:
    let cache = DefaultInMemoryCache::builder().message_cache_size(10).build();

    while let Some(item) = shard.next_event(EventTypeFlags::all()).await {
        let Ok(event) = item else {
            tracing::warn!(source = ?item.unwrap_err(), "error receiving event");

            continue;
        };

        // Update the cache with the event.
        cache.update(&event);
    }

    Ok(())
}

License

All first-party crates are licensed under ISC

Dependencies

~2.3–8MB
~65K SLoC