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
use crate::;
use cmp;
/// A trait that represents a structure or enum that can evict items out of a [`Cache`] instance.
///
/// This is very generic, and it is up to the implementation for the order they would like to evict
/// items, and the total number of items they would like to evict. The inner `evict` function is
/// the function called to start the eviction process.
///
/// # Implementations
///
/// This can be implemented by the user of this library, however there are also ready-made
/// implementations:
///
/// * [`LruEvictor`] - Least Recently Used eviction impl
/// * [`FifoEvictor`] - First-in First-out eviction impl
///
/// # Examples
///
/// Basic implementation that will remove all items in the order they're found in the
/// meta-database:
/// ```rust,no_run
/// use forceps::{Cache, evictors::Evictor};
/// struct MyEvictor;
///
/// impl Evictor for MyEvictor {
/// type Err = Box<dyn std::error::Error>;
///
/// async fn evict(&self, cache: &Cache) -> Result<u64, Self::Err> {
/// let mut evicted_size = 0;
/// for result in cache.metadata_iter() {
/// let (key, meta) = result?;
/// cache.remove(&key).await?;
/// evicted_size += meta.get_size();
/// }
///
/// Ok(evicted_size)
/// }
/// }
/// ```
/// A trait for evictors that will evict items until a minimum size is met
///
/// This trait default implements `evict_to_min_size`, and requires `batch_size` and `min_size`.
/// A trait that represents a candidate for eviction. Used as a generalization for
/// [`find_evict_candidates`]
///
/// A structure that implements this trait can be created using
/// [`from_meta`](EvictCandidate::from_meta). To check whether it should be evicted over another
/// [`EvictCandidate`], [`should_evict_over`](EvictCandidate::should_evict_over) can be used.
/// Finds the total size of the cache and a vector of eviction candidates.
///
/// The eviction candidates is an in-order list of candidates that should be removed from the
/// cache. These are selected based on the priority to evict, which is determined by
/// [`EvictCandidate::should_evict_over`].
///
/// This function runs at approx. `O(n * batch)` where `n` is the number of metadata entries, and
/// `batch` is the variable provided.
/// [`EvictCandidate`] implementation for the Least Recently Used eviction algorithm.
/// Least Recently Used eviction algorithm for a [`Cache`]
///
/// This algorithm will evict items based on when they were lasted `read` from the [`Cache`]. It
/// will start with the least recent `read` item, going up until a certain size requirement is met.
///
/// ## Important Note
///
/// This algorithm will not work as expected **unless** the `CacheBuilder::track_access` option has
/// been set to `true`. If this is not the case, then this will work exactly like the
/// [`FifoEvictor`] algorithm.
///
/// ## O(?) & Async
///
/// This eviction algorithm has no guarantee on being fast or efficient at all. It is expected that
/// this algorithm is called infrequently, only when absolutely needed.
///
/// This algorithm also contains blocking calls in an `async` context, mainly metadata iterations
/// and lookups. The reason for the `async` context is for the actual removals from cache.
///
/// # Configuration
///
/// **Minimum Size**
///
/// This is the minimum size that the cache must shrink to until the eviction algorithm will stop
/// evicting items.
///
/// **Batch Size**
///
/// To create one batch, an entire iteration over the metadata must be performed. However, smaller
/// values means that there is less checking/sorting for each batch found. Higher values should be
/// used if you're expecting to evict more items at a time.
///
/// # Examples
///
/// ```rust
/// # #[tokio::main(flavor = "current_thread")]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use forceps::{Cache, evictors::LruEvictor};
///
/// let cache = Cache::new("./cache")
/// .build()
/// .await?;
/// const MIN_SIZE: u64 = 512 * 1024 * 1024; // 512MiB
///
/// // Option 1:
/// cache.evict_with(LruEvictor::new(MIN_SIZE).set_batch_size(500)).await?;
///
/// // Option 2:
/// use forceps::evictors::Evictor;
/// LruEvictor::new(MIN_SIZE).set_batch_size(500).evict(&cache).await?;
/// # Ok(())
/// # }
/// ```
/// [`EvictCandidate`] implementation for the First-in-first-out eviction algorithm.
/// First-in-first-out eviction algorithm for a [`Cache`]
///
/// This algorithm will evict items in a [`Cache`] in the order that they were originally written
/// to the cache, so the first entry will be the first removed. It will stop evicting items when a
/// certain minimum total size is met.
///
/// ## O(?) & Async
///
/// This eviction algorithm has no guarantee on being fast or efficient at all. It is expected that
/// this algorithm is called infrequently, only when absolutely needed.
///
/// This algorithm also contains blocking calls in an `async` context, mainly metadata iterations
/// and lookups. The reason for the `async` context is for the actual removals from cache.
///
/// # Configuration
///
/// **Minimum Size**
///
/// This is the minimum size that the cache must shrink to until the eviction algorithm will stop
/// evicting items.
///
/// **Batch Size**
///
/// To create one batch, an entire iteration over the metadata must be performed. However, smaller
/// values means that there is less checking/sorting for each batch found. Higher values should be
/// used if you're expecting to evict more items at a time.
///
/// # Examples
///
/// ```rust
/// # #[tokio::main(flavor = "current_thread")]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use forceps::{Cache, evictors::FifoEvictor};
///
/// let cache = Cache::new("./cache")
/// .build()
/// .await?;
/// const MIN_SIZE: u64 = 512 * 1024 * 1024; // 512MiB
///
/// // Option 1:
/// cache.evict_with(FifoEvictor::new(MIN_SIZE).set_batch_size(500)).await?;
///
/// // Option 2:
/// use forceps::evictors::Evictor;
/// FifoEvictor::new(MIN_SIZE).set_batch_size(500).evict(&cache).await?;
/// # Ok(())
/// # }
/// ```