Crates.io | renege |
lib.rs | renege |
version | 0.1.2 |
source | src |
created_at | 2023-10-17 03:38:08.068043 |
updated_at | 2023-10-19 03:14:19.51309 |
description | Tracking cache validity using fast concurrent invalidation propogation. |
homepage | |
repository | https://github.com/dzamkov/renege |
max_upload_size | |
id | 1005480 |
size | 77,973 |
renege
Tracking cache validity using fast concurrent invalidation propogation.
Whenever a computer program needs to use the same data or computation multiple times, the simplest and easiest optimization is usually to cache it. However, this introduces a notoriously tricky problem: preventing stale data. The validity of a cache depends on a set of conditions. These are statements that were true at the time the cache was populated and were assumed to be true while building the cache, but may not necessarily be true in the future. For example:
2023-10-17T20:03:38
view
config.yaml
consists of a particular string200 GPa
If a cache depends on a condition that is no longer true, the cache is invalid. Using data from an invalid cache can give different results from retreiving/computing the data directly, making the optimization incorrect.
Solutions to this problem generally fall under two categories:
Pull-based: When accessing the cache, the requestor re-checks all of the conditions that the cache depends on. If any are false, the cache is invalid.
Pros: Simple and easy to implement
Cons: Tends to be slow, especially if there are many conditions and/or they are expensive to check. The performance penalty of the checks might even outweigh the benefits of the cache
Push-based: When a condition becomes false, caches that depend on it are marked as invalid.
Pros: Very fast. When accessing the cache, the requestor only needs to check if it is marked as invalid
Cons: Difficult to implement. Conditions need to be actively watched, and the caches depending on them need to be tracked. When caches depend on other caches, it becomes necessary to track the entire dependency graph to allow efficient invalidation.
Renege simplifies the implementation of push-based cache invalidation by handling all of the tracking and bookkeeping for you. The API is dead simple:
Condition
: A condition that a
cache can depend on. Is automatically invalidated when dropped.
Token
: Tracks the validity of an
arbitrary set of conditions.
use renege::{Condition, Token};
// Create conditions
let pigs_cant_fly = Condition::new();
let water_is_wet = Condition::new();
// Use .token() to create a Token which tracks the validity of a single Condition
// Tokens can be combined using the & operator
let normality = pigs_cant_fly.token() & water_is_wet.token();
assert!(normality.is_valid());
// Conditions are invalidated when dropped
drop(water_is_wet);
// Use .is_valid() to check if all of the Conditions a Token depends on are still valid
assert!(!normality.is_valid());