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
// Copyright (C) 2026 Tencent. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Cache eviction policies.
//!
//! A [`CacheEvictor`] decides which page to drop when the cache is full.
//! Mirrors Java `CacheEvictor`. The evictor only tracks page *identity* and
//! access order — byte accounting and the actual page removal live in the
//! cache manager.
//!
//! Both LRU and LFU are backed by [`MokaCacheEvictor`] using
//! `moka::sync::Cache` with per-segment write locks (~64 segments), replacing
//! the previous global `Mutex` implementations that caused 38x contention
//! under 32 concurrent reads. See
//! `docs/perf/2026-07-09-oncpu6-concurrent-uring-analysis/MOKA_LRU_OPTIMIZATION.md`.
pub use MokaCacheEvictor;
use crateCacheEvictorType;
/// Eviction policy abstraction.
///
/// Implementations must be internally synchronized (the manager calls these
/// from async contexts, potentially concurrently).
/// Build an evictor for the configured policy.
///
/// Both policies are backed by `MokaCacheEvictor`:
/// - `Lru` → moka with `EvictionPolicy::lru()` + tick-based recency
/// - `Lfu` → moka with `EvictionPolicy::tiny_lfu()` + frequency counting