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
use Hash;
use Deref;
use DerefMut;
use Ptr;
use crateCache;
use crateEntryValue;
use cratePolicy;
/// A smart reference to a cached value that tracks modifications.
///
/// The `Entry` provides transparent access to the underlying value through
/// `Deref` and `DerefMut` traits.
///
/// # Behavior
///
/// ## Automatic Eviction Order Updates
/// When an `Entry` is dropped:
/// - If the value was **modified** during the borrow (via `DerefMut`, `AsMut`,
/// or `value_mut()`), the cache's eviction order is updated
/// - If the value was **never modified**, the eviction order remains unchanged
///
/// ## Modification Tracking
/// The `Entry` tracks modifications through several mechanisms:
/// - **`DerefMut`**: Any mutable dereference (`*entry = new_value`) marks as
/// dirty
/// - **`AsMut`**: Calling `entry.as_mut()` marks as dirty
/// - **`value_mut()`**: Calling `entry.value_mut()` marks as dirty
/// - **Read-only access**: `Deref`, `AsRef`, `value()`, and `key()` do not mark
/// as dirty
///
/// # Performance
///
/// - **Lookup**: O(1) average (inherits from hash map performance)
/// - **No modification**: Zero additional overhead beyond the initial lookup
/// - **With modification**: O(1) cache reordering when dropped
///
/// # Examples
///
/// ## Read-only Access (No Eviction Order Change)
/// ```rust
/// use std::num::NonZeroUsize;
///
/// use evictor::Lru;
///
/// let mut cache = Lru::new(NonZeroUsize::new(3).unwrap());
/// cache.insert("A", vec![1, 2, 3]);
/// cache.insert("B", vec![4, 5, 6]);
///
/// let original_order: Vec<_> = cache.iter().map(|(k, _)| *k).collect();
///
/// // Read-only access through Entry
/// if let Some(entry) = cache.peek_mut(&"A") {
/// let _len = entry.len(); // Read-only
/// let _first = entry.first(); // Read-only
/// let _key = entry.key(); // Read-only
/// let _value_ref = entry.value(); // Read-only
/// } // Entry dropped here - no modifications, so no cache update
///
/// let new_order: Vec<_> = cache.iter().map(|(k, _)| *k).collect();
/// assert_eq!(original_order, new_order); // Order unchanged
/// ```
///
/// ## Modification Triggers Cache Update
/// ```rust
/// use std::num::NonZeroUsize;
///
/// use evictor::Lru;
///
/// let mut cache = Lru::new(NonZeroUsize::new(3).unwrap());
/// cache.insert("A", vec![1, 2, 3]);
/// cache.insert("B", vec![4, 5, 6]);
/// cache.insert("C", vec![7, 8, 9]);
///
/// // Before: "A" would be evicted first
/// assert_eq!(cache.tail().unwrap().0, &"A");
///
/// // Modify "A" through Entry
/// if let Some(mut entry) = cache.peek_mut(&"A") {
/// entry.push(4); // Modification via DerefMut
/// } // Entry dropped here - modification detected, cache updated
///
/// // After: "A" is now most recently used, "B" would be evicted first
/// assert_eq!(cache.tail().unwrap().0, &"B");
/// ```
///
/// ## Different Modification Methods
/// ```rust
/// use std::num::NonZeroUsize;
///
/// use evictor::Lru;
///
/// let mut cache = Lru::new(NonZeroUsize::new(2).unwrap());
/// cache.insert("key", String::from("hello"));
///
/// // Method 1: Direct assignment via DerefMut
/// if let Some(mut entry) = cache.peek_mut(&"key") {
/// *entry = String::from("world"); // Triggers modification tracking
/// }
///
/// // Method 2: Mutable method call via DerefMut
/// if let Some(mut entry) = cache.peek_mut(&"key") {
/// entry.push_str(" rust"); // Triggers modification tracking
/// }
///
/// // Method 3: Explicit mutable reference
/// if let Some(mut entry) = cache.peek_mut(&"key") {
/// let value = entry.value_mut(); // Triggers modification tracking
/// value.push('!');
/// }
///
/// // Method 4: AsMut trait
/// if let Some(mut entry) = cache.peek_mut(&"key") {
/// entry.as_mut().push('?'); // Triggers modification tracking
/// }
/// ```