1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
use std::{
fmt,
sync::Arc,
time::{Duration, Instant},
};
#[derive(Clone, Debug)]
/// The policy of a cache.
pub struct Policy {
max_capacity: Option<u64>,
num_segments: usize,
time_to_live: Option<Duration>,
time_to_idle: Option<Duration>,
}
impl Policy {
pub(crate) fn new(
max_capacity: Option<u64>,
num_segments: usize,
time_to_live: Option<Duration>,
time_to_idle: Option<Duration>,
) -> Self {
Self {
max_capacity,
num_segments,
time_to_live,
time_to_idle,
}
}
/// Returns the `max_capacity` of the cache.
pub fn max_capacity(&self) -> Option<u64> {
self.max_capacity
}
#[cfg(feature = "sync")]
pub(crate) fn set_max_capacity(&mut self, capacity: Option<u64>) {
self.max_capacity = capacity;
}
/// Returns the number of internal segments of the cache.
pub fn num_segments(&self) -> usize {
self.num_segments
}
#[cfg(feature = "sync")]
pub(crate) fn set_num_segments(&mut self, num: usize) {
self.num_segments = num;
}
/// Returns the `time_to_live` of the cache.
pub fn time_to_live(&self) -> Option<Duration> {
self.time_to_live
}
/// Returns the `time_to_idle` of the cache.
pub fn time_to_idle(&self) -> Option<Duration> {
self.time_to_idle
}
}
/// The eviction (and admission) policy of a cache.
///
/// When the cache is full, the eviction/admission policy is used to determine which
/// items should be admitted to the cache and which cached items should be evicted.
/// The choice of a policy will directly affect the performance (hit rate) of the
/// cache.
///
/// The following policies are available:
///
/// - **TinyLFU** (default):
/// - Suitable for most workloads.
/// - TinyLFU combines the LRU eviction policy and an admission policy based on the
/// historical popularity of keys.
/// - Note that it tracks not only the keys currently in the cache, but all hit and
/// missed keys. The data structure used to _estimate_ the popularity of keys is
/// a modified Count-Min Sketch, which has a very low memory footprint (thus the
/// name "tiny").
/// - **LRU**:
/// - Suitable for some workloads with strong recency bias, such as streaming data
/// processing.
///
/// LFU stands for Least Frequently Used. LRU stands for Least Recently Used.
///
/// Use associate function [`EvictionPolicy::tiny_lfu`](#method.tiny_lfu) or
/// [`EvictionPolicy::lru`](#method.lru) to obtain an instance of `EvictionPolicy`.
#[derive(Clone, Default)]
pub struct EvictionPolicy {
pub(crate) config: EvictionPolicyConfig,
}
impl EvictionPolicy {
/// Returns the TinyLFU policy, which is suitable for most workloads.
///
/// TinyLFU is a combination of the LRU eviction policy and the admission policy
/// based on the historical popularity of keys.
///
/// Note that it tracks not only the keys currently in the cache, but all hit and
/// missed keys. The data structure used to _estimate_ the popularity of keys is
/// a modified Count-Min Sketch, which has a very low memory footprint (thus the
/// name "tiny").
pub fn tiny_lfu() -> Self {
Self {
config: EvictionPolicyConfig::TinyLfu,
}
}
/// Returns the LRU policy.
///
/// Suitable for some workloads with strong recency bias, such as streaming data
/// processing.
pub fn lru() -> Self {
Self {
config: EvictionPolicyConfig::Lru,
}
}
}
impl fmt::Debug for EvictionPolicy {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.config {
EvictionPolicyConfig::TinyLfu => write!(f, "EvictionPolicy::TinyLfu"),
EvictionPolicyConfig::Lru => write!(f, "EvictionPolicy::Lru"),
}
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub(crate) enum EvictionPolicyConfig {
TinyLfu,
Lru,
}
impl Default for EvictionPolicyConfig {
fn default() -> Self {
Self::TinyLfu
}
}
/// Calculates when cache entries expire. A single expiration time is retained on
/// each entry so that the lifetime of an entry may be extended or reduced by
/// subsequent evaluations.
///
/// `Expiry` trait provides three methods. They specify the expiration time of an
/// entry by returning a `Some(duration)` until the entry expires:
///
/// - [`expire_after_create`](#method.expire_after_create) — Returns the
/// duration (or none) after the entry's creation.
/// - [`expire_after_read`](#method.expire_after_read) — Returns the duration
/// (or none) after its last read.
/// - [`expire_after_update`](#method.expire_after_update) — Returns the
/// duration (or none) after its last update.
///
/// The default implementations are provided that return `None` (no expiration) or
/// `current_duration: Option<Instant>` (not modify the current expiration time).
/// Override some of them as you need.
///
pub trait Expiry<K, V> {
/// Specifies that the entry should be automatically removed from the cache once
/// the duration has elapsed after the entry's creation. This method is called
/// for cache write methods such as `insert` and `get_with` but only when the key
/// was not present in the cache.
///
/// # Parameters
///
/// - `key` — A reference to the key of the entry.
/// - `value` — A reference to the value of the entry.
/// - `created_at` — The time when this entry was inserted.
///
/// # Return value
///
/// The returned `Option<Duration>` is used to set the expiration time of the
/// entry.
///
/// - Returning `Some(duration)` — The expiration time is set to
/// `created_at + duration`.
/// - Returning `None` — The expiration time is cleared (no expiration).
/// - This is the value that the default implementation returns.
///
/// # Notes on `time_to_live` and `time_to_idle` policies
///
/// When the cache is configured with `time_to_live` and/or `time_to_idle`
/// policies, the entry will be evicted after the earliest of the expiration time
/// returned by this expiry, the `time_to_live` and `time_to_idle` policies.
#[allow(unused_variables)]
fn expire_after_create(&self, key: &K, value: &V, created_at: Instant) -> Option<Duration> {
None
}
/// Specifies that the entry should be automatically removed from the cache once
/// the duration has elapsed after its last read. This method is called for cache
/// read methods such as `get` and `get_with` but only when the key is present in
/// the cache.
///
/// # Parameters
///
/// - `key` — A reference to the key of the entry.
/// - `value` — A reference to the value of the entry.
/// - `read_at` — The time when this entry was read.
/// - `duration_until_expiry` — The remaining duration until the entry
/// expires. (Calculated by `expiration_time - read_at`)
/// - `last_modified_at` — The time when this entry was created or updated.
///
/// # Return value
///
/// The returned `Option<Duration>` is used to set the expiration time of the
/// entry.
///
/// - Returning `Some(duration)` — The expiration time is set to
/// `read_at + duration`.
/// - Returning `None` — The expiration time is cleared (no expiration).
/// - Returning `duration_until_expiry` will not modify the expiration time.
/// - This is the value that the default implementation returns.
///
/// # Notes on `time_to_live` and `time_to_idle` policies
///
/// When the cache is configured with `time_to_live` and/or `time_to_idle`
/// policies, then:
///
/// - The entry will be evicted after the earliest of the expiration time
/// returned by this expiry, the `time_to_live` and `time_to_idle` policies.
/// - The `duration_until_expiry` takes in account the `time_to_live` and
/// `time_to_idle` policies.
#[allow(unused_variables)]
fn expire_after_read(
&self,
key: &K,
value: &V,
read_at: Instant,
duration_until_expiry: Option<Duration>,
last_modified_at: Instant,
) -> Option<Duration> {
duration_until_expiry
}
/// Specifies that the entry should be automatically removed from the cache once
/// the duration has elapsed after the replacement of its value. This method is
/// called for cache write methods such as `insert` but only when the key is
/// already present in the cache.
///
/// # Parameters
///
/// - `key` — A reference to the key of the entry.
/// - `value` — A reference to the value of the entry.
/// - `updated_at` — The time when this entry was updated.
/// - `duration_until_expiry` — The remaining duration until the entry
/// expires. (Calculated by `expiration_time - updated_at`)
///
/// # Return value
///
/// The returned `Option<Duration>` is used to set the expiration time of the
/// entry.
///
/// - Returning `Some(duration)` — The expiration time is set to
/// `updated_at + duration`.
/// - Returning `None` — The expiration time is cleared (no expiration).
/// - Returning `duration_until_expiry` will not modify the expiration time.
/// - This is the value that the default implementation returns.
///
/// # Notes on `time_to_live` and `time_to_idle` policies
///
/// When the cache is configured with `time_to_live` and/or `time_to_idle`
/// policies, then:
///
/// - The entry will be evicted after the earliest of the expiration time
/// returned by this expiry, the `time_to_live` and `time_to_idle` policies.
/// - The `duration_until_expiry` takes in account the `time_to_live` and
/// `time_to_idle` policies.
#[allow(unused_variables)]
fn expire_after_update(
&self,
key: &K,
value: &V,
updated_at: Instant,
duration_until_expiry: Option<Duration>,
) -> Option<Duration> {
duration_until_expiry
}
}
pub(crate) struct ExpirationPolicy<K, V> {
time_to_live: Option<Duration>,
time_to_idle: Option<Duration>,
expiry: Option<Arc<dyn Expiry<K, V> + Send + Sync + 'static>>,
}
impl<K, V> Default for ExpirationPolicy<K, V> {
fn default() -> Self {
Self {
time_to_live: None,
time_to_idle: None,
expiry: None,
}
}
}
impl<K, V> Clone for ExpirationPolicy<K, V> {
fn clone(&self) -> Self {
Self {
time_to_live: self.time_to_live,
time_to_idle: self.time_to_idle,
expiry: self.expiry.clone(),
}
}
}
impl<K, V> ExpirationPolicy<K, V> {
#[cfg(test)]
pub(crate) fn new(
time_to_live: Option<Duration>,
time_to_idle: Option<Duration>,
expiry: Option<Arc<dyn Expiry<K, V> + Send + Sync + 'static>>,
) -> Self {
Self {
time_to_live,
time_to_idle,
expiry,
}
}
/// Returns the `time_to_live` of the cache.
pub(crate) fn time_to_live(&self) -> Option<Duration> {
self.time_to_live
}
pub(crate) fn set_time_to_live(&mut self, duration: Duration) {
self.time_to_live = Some(duration);
}
/// Returns the `time_to_idle` of the cache.
pub(crate) fn time_to_idle(&self) -> Option<Duration> {
self.time_to_idle
}
pub(crate) fn set_time_to_idle(&mut self, duration: Duration) {
self.time_to_idle = Some(duration);
}
pub(crate) fn expiry(&self) -> Option<Arc<dyn Expiry<K, V> + Send + Sync + 'static>> {
self.expiry.clone()
}
pub(crate) fn set_expiry(&mut self, expiry: Arc<dyn Expiry<K, V> + Send + Sync + 'static>) {
self.expiry = Some(expiry);
}
}
#[cfg(test)]
pub(crate) mod test_utils {
use std::sync::atomic::{AtomicU8, Ordering};
#[derive(Default)]
pub(crate) struct ExpiryCallCounters {
expected_creations: AtomicU8,
expected_reads: AtomicU8,
expected_updates: AtomicU8,
actual_creations: AtomicU8,
actual_reads: AtomicU8,
actual_updates: AtomicU8,
}
impl ExpiryCallCounters {
pub(crate) fn incl_expected_creations(&self) {
self.expected_creations.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn incl_expected_reads(&self) {
self.expected_reads.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn incl_expected_updates(&self) {
self.expected_updates.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn incl_actual_creations(&self) {
self.actual_creations.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn incl_actual_reads(&self) {
self.actual_reads.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn incl_actual_updates(&self) {
self.actual_updates.fetch_add(1, Ordering::Relaxed);
}
pub(crate) fn verify(&self) {
assert_eq!(
self.expected_creations.load(Ordering::Relaxed),
self.actual_creations.load(Ordering::Relaxed),
"expected_creations != actual_creations"
);
assert_eq!(
self.expected_reads.load(Ordering::Relaxed),
self.actual_reads.load(Ordering::Relaxed),
"expected_reads != actual_reads"
);
assert_eq!(
self.expected_updates.load(Ordering::Relaxed),
self.actual_updates.load(Ordering::Relaxed),
"expected_updates != actual_updates"
);
}
}
}