#cache #ttl #expire

ttl_cache

A cache that will expire values after a TTL

8 releases (4 breaking)

Uses old Rust 2015

0.5.1 Oct 31, 2018
0.5.0 Oct 29, 2018
0.4.2 Apr 9, 2018
0.3.0 Mar 12, 2017
0.1.1 Oct 8, 2016

#119 in Caching

Download history 40077/week @ 2024-11-17 35144/week @ 2024-11-24 46156/week @ 2024-12-01 50688/week @ 2024-12-08 42927/week @ 2024-12-15 11249/week @ 2024-12-22 16487/week @ 2024-12-29 42041/week @ 2025-01-05 45686/week @ 2025-01-12 43081/week @ 2025-01-19 45063/week @ 2025-01-26 48336/week @ 2025-02-02 51958/week @ 2025-02-09 38934/week @ 2025-02-16 42739/week @ 2025-02-23 43952/week @ 2025-03-02

179,283 downloads per month
Used in 55 crates (20 directly)

MIT/Apache

22KB
331 lines

ttl_cache

Build Status Documentation

This crate provides a time sensitive key-value FIFO cache. When the cache is created it is given a TTL. Any value that are in the cache for longer than this duration are considered invalid and will not be returned. Supports 1.20 +


lib.rs:

This crate provides a time sensitive key-value cache. When an item is inserted it is given a TTL. Any value that are in the cache after their duration are considered invalid and will not be returned on lookups.

Dependencies

~50KB