cachetools 0.0.2
Collection of cache strategies
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
cachetools
This package contains some cache implementations (for example LRU cache) and underlying data structures.
All code is @safe
. It is also @nogc
if key and value types support @nogc for some important operations.
cachetools use std.experimantal.allocator with configurable allocator when it need allcation.
LRU cache
LRU cache keep limited number of items in memory. When adding new item to already full cache we have to evict some items. Eviction candidates are selected first from expired items (using per-cache configurable TTL) or from oldest accessed items.
Code examples
auto lru = new CacheLRU!(int, string);
lru.size = 2048; // keep 2048 elements in cache
lru.ttl = 60; // set 60 seconds TTL for items in cache
lru.put(1, "one");
auto v = lru.get(1);
assert(v == "one"); // 1 is in cache
v = lru.get(2);
assert(v.isNull); // no such item in cache
Default values for TTL is 0 which means - no TTL. Default value for size is 1024;
Class instance as key
To use class as key with this code, you have to define toHash and opEquals(important: opEquals to the class instance not Object) as safe or trusted (optionally as nogc if you need it):
import cachetools.hash: hash_function;
class C
{
int s;
this(int v)
{
s = v;
}
override hash_t toHash() const
{
return hash_function(s);
}
bool opEquals(const C other) pure const @safe
{
return s == other.s;
}
}
CacheLRU!(immutable C, string) cache = new CacheLRU!(immutable C, string);
immutable C s1 = new immutable C(1);
cache.put(s1, "one");
auto s11 = cache.get(s1);
assert(s11 == "one");
Cache events
Sometimes you have to know if items are purged from cache or modified. You can configure cache to report such events. Important warning - if you enable cache events and do not check it after cache operations, then list of stored events will grow without bounds. Code sample:
auto lru = new CacheLRU!(int, string);
lru.enableCacheEvents();
lru.put(1, "one");
lru.put(1, "next one");
assert(lru.get(1) == "next one");
auto events = lru.cacheEvents();
writeln(events);
output:
[CacheEvent!(int, string)(Updated, 1, "one")]
Each CacheEvent
have key
and val
members and name of the event(Removed, Expired, Changed, Evicted).
Hash Table
Some parts of this package are based on internal hash table which can be used independently. It is open-addressing hash table with keys and values stored inline in the buckets array to avoid unnecessary allocations and better use of CPU cache for small key/value types.
Hash Table supports immutable keys and values. Due to language limitations you can't use structs with immutable/const members.
All hash table code is @safe
and require from user supplied functions such as toHash
or opEquals
also be safe (or trusted).
It is also @nogc
if toHash
and opEquals
are @nogc
. opIndex
is not @nogc
as it can throw exception.
Several code samples:
import cachetools.containers.hashmap;
string[] words = ["hello", "my", "friend", "hello"];
void main()
{
HashMap!(string, int) counter;
build0(counter); // build table (verbose variant)
report(counter);
counter.clear(); // clear table
build1(counter); // build table (less verbose variant)
report(counter);
}
/// verbose variant
void build0(ref HashMap!(string, int) counter) @safe @nogc
{
foreach(word; words)
{
auto w = word in counter;
if ( w !is null )
{
(*w)++; // update
}
else
{
counter[word] = 1; // create
}
}
}
/// short variant
void build1(ref HashMap!(string, int) counter) @safe @nogc
{
foreach(word; words)
{
auto w = word in counter;
counter.getOrAdd(word, 0)++;
}
}
void report(ref HashMap!(string, int) hashmap) @safe
{
import std.stdio;
writefln("keys: %s", hashmap.byKey);
writefln("values: %s", hashmap.byValue);
writefln("pairs: %s", hashmap.byPair);
writeln("---");
}
Output:
keys: ["hello", "friend", "my"]
values: [2, 1, 1]
pairs: [Tuple!(string, "key", int, "value")("hello", 2), Tuple!(string, "key", int, "value")("friend", 1), Tuple!(string, "key", int, "value")("my", 1)]
---
keys: ["hello", "friend", "my"]
values: [2, 1, 1]
pairs: [Tuple!(string, "key", int, "value")("hello", 2), Tuple!(string, "key", int, "value")("friend", 1), Tuple!(string, "key", int, "value")("my", 1)]
---
- 0.0.2 released 6 years ago
- ikod/cachetools
- MIT
- Authors:
- Dependencies:
- none
- Versions:
-
0.4.1 2022-Dec-17 0.4.0 2022-Feb-13 0.3.1 2019-Aug-13 0.2.1 2019-Jul-17 0.1.2 2019-Jan-29 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
8 downloads this month
-
50 downloads total
-
- Score:
- 1.3
- Short URL:
- cachetools.dub.pm