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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
// Copyright 2022 - 2024 Wenmeng See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// Author: tickbh
// -----
// Created Date: 2024/05/24 03:04:11

use std::{
    borrow::Borrow,
    fmt::{self, Debug},
    hash::{BuildHasher, Hash},
    ops::{Index, IndexMut},
};

use crate::DefaultHasher;
use crate::{LfuCache, LruCache};

use super::{lfu, lru};

#[cfg(feature = "ttl")]
use crate::get_milltimestamp;
#[cfg(feature = "ttl")]
const DEFAULT_CHECK_STEP: u64 = 120;

/// ARC(Adaptive Replacement Cache): 自适应缓存替换算法,它结合了LRU与LFU,来获得可用缓存的最佳使用。
/// 设置容量之后将最大保持该容量大小的数据
/// 后进的数据将会淘汰最久没有被访问的数据
///
/// # Examples
///
/// ```
/// use algorithm::ArcCache;
/// fn main() {
///     let mut arc = ArcCache::new(3);
///     arc.insert("now", "ok");
///     arc.insert("hello", "algorithm");
///     arc.insert("this", "arc");
///     arc.insert("auth", "tickbh");
///     assert!(arc.len() == 4);
///     assert_eq!(arc.get("hello"), Some(&"algorithm"));
///     assert_eq!(arc.get("this"), Some(&"arc"));
///     assert_eq!(arc.get("now"), Some(&"ok"));
///
/// }
/// ```
pub struct ArcCache<K, V, S> {
    main_lru: LruCache<K, V, S>,
    ghost_lru: LruCache<K, V, S>,

    main_lfu: LfuCache<K, V, S>,
    ghost_lfu: LruCache<K, V, S>,

    cap: usize,
    /// 下一次检查的时间点,如果大于该时间点则全部检查是否过期
    #[cfg(feature = "ttl")]
    check_next: u64,
    /// 每次大检查点的时间间隔,如果不想启用该特性,可以将该值设成u64::MAX
    #[cfg(feature = "ttl")]
    check_step: u64,
    /// 所有节点中是否存在带ttl的结点,如果均为普通的元素,则过期的将不进行检查
    #[cfg(feature = "ttl")]
    has_ttl: bool,
}

impl<K: Hash + Eq, V> Default for ArcCache<K, V, DefaultHasher> {
    fn default() -> Self {
        ArcCache::new(100)
    }
}

impl<K: Hash + Eq, V> ArcCache<K, V, DefaultHasher> {
    /// 因为存在四个数组, 所以实际的容量为这个的4倍
    pub fn new(cap: usize) -> Self {
        ArcCache::with_hasher(cap, DefaultHasher::default())
    }
}

impl<K, V, S: Clone> ArcCache<K, V, S> {
    /// 提供hash函数
    pub fn with_hasher(cap: usize, hash_builder: S) -> ArcCache<K, V, S> {
        let cap = cap.max(1);
        Self {
            main_lru: LruCache::with_hasher(cap, hash_builder.clone()),
            ghost_lru: LruCache::with_hasher(cap, hash_builder.clone()),

            main_lfu: LfuCache::with_hasher(cap, hash_builder.clone()),
            ghost_lfu: LruCache::with_hasher(cap, hash_builder),

            cap,
            #[cfg(feature = "ttl")]
            check_step: DEFAULT_CHECK_STEP,
            #[cfg(feature = "ttl")]
            check_next: get_milltimestamp() + DEFAULT_CHECK_STEP * 1000,
            #[cfg(feature = "ttl")]
            has_ttl: false,
        }
    }
}

impl<K, V, S> ArcCache<K, V, S> {
    /// 获取当前检查lru的间隔
    #[cfg(feature = "ttl")]
    pub fn get_check_step(&self) -> u64 {
        self.check_step
    }

    /// 设置当前检查lru的间隔
    /// 单位为秒,意思就是每隔多少秒会清理一次数据
    /// 如果数据太大的话遍历一次可能会比较久的时长
    /// 一次清理时间复杂度O(n)
    /// 仅仅在插入时触发检查,获取时仅检查当前元素
    #[cfg(feature = "ttl")]
    pub fn set_check_step(&mut self, check_step: u64) {
        self.check_step = check_step;
        self.check_next = get_milltimestamp() + self.check_step * 1000;
        self.main_lru.set_check_step(check_step);
        self.main_lfu.set_check_step(check_step);
    }

    /// 获取当前容量
    pub fn capacity(&self) -> usize {
        self.cap
    }

    /// 清理当前数据
    /// # Examples
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("now", "ok");
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.len() == 3);
    ///     arc.clear();
    ///     assert!(arc.len() == 0);
    /// }
    /// ```
    pub fn clear(&mut self) {
        self.main_lru.clear();
        self.ghost_lru.clear();

        self.main_lfu.clear();
        self.ghost_lfu.clear();
    }

    /// 获取当前长度
    pub fn len(&self) -> usize {
        self.main_lru.len() + self.main_lfu.len() + self.ghost_lfu.len() + self.ghost_lru.len()
    }

    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// 扩展当前容量
    pub fn reserve(&mut self, additional: usize) -> &mut Self {
        self.cap += additional;
        self.main_lfu.reserve(additional);
        self.main_lru.reserve(additional);
        self.ghost_lfu.reserve(additional);
        self.ghost_lru.reserve(additional);
        self
    }

    /// 遍历当前的所有值
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     for (k, v) in arc.iter() {
    ///         assert!(k == &"hello" || k == &"this");
    ///         assert!(v == &"algorithm" || v == &"arc");
    ///     }
    ///     assert!(arc.len() == 2);
    /// }
    /// ```
    pub fn iter(&self) -> Iter<'_, K, V, S> {
        Iter {
            lru_iter: self.main_lru.iter(),
            lfu_iter: self.main_lfu.iter(),
        }
    }

    /// 遍历当前的所有值, 可变
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm".to_string());
    ///     arc.insert("this", "arc".to_string());
    ///     for (k, v) in arc.iter_mut() {
    ///         v.push_str(" ok");
    ///     }
    ///     assert!(arc.len() == 2);
    ///     assert!(arc.get(&"this") == Some(&"arc ok".to_string()));
    /// assert!(arc.get(&"hello") == Some(&"algorithm ok".to_string()));
    /// }
    /// ```
    pub fn iter_mut(&mut self) -> IterMut<'_, K, V, S> {
        IterMut {
            lru_iter: self.main_lru.iter_mut(),
            lfu_iter: self.main_lfu.iter_mut(),
        }
    }

    /// 遍历当前的key值
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     let mut keys = arc.keys();
    ///     assert!(keys.next()==Some(&"this"));
    ///     assert!(keys.next()==Some(&"hello"));
    ///     assert!(keys.next() == None);
    /// }
    /// ```
    pub fn keys(&self) -> Keys<'_, K, V, S> {
        Keys { iter: self.iter() }
    }

    /// 遍历当前的valus值
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let vec = vec![(1, 1), (2, 2), (3, 3)];
    ///     let mut map: ArcCache<_, _, _> = vec.into_iter().collect();
    ///     for value in map.values_mut() {
    ///     *value = (*value) * 2
    ///     }
    ///     let values: Vec<_> = map.values().cloned().collect();
    ///     assert_eq!(values.len(), 3);
    ///     assert!(values.contains(&2));
    ///     assert!(values.contains(&4));
    ///     assert!(values.contains(&6));
    /// }
    /// ```
    pub fn values(&self) -> Values<'_, K, V, S> {
        Values { iter: self.iter() }
    }

    /// 遍历当前的valus值
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm".to_string());
    ///     arc.insert("this", "arc".to_string());
    ///     {
    ///         let mut values = arc.values_mut();
    ///         values.next().unwrap().push_str(" ok");
    ///         values.next().unwrap().push_str(" ok");
    ///         assert!(values.next() == None);
    ///     }
    ///     assert_eq!(arc.get(&"this"), Some(&"arc ok".to_string()))
    /// }
    /// ```
    pub fn values_mut(&mut self) -> ValuesMut<'_, K, V, S> {
        ValuesMut {
            iter: self.iter_mut(),
        }
    }

    pub fn hasher(&self) -> &S {
        self.main_lru.hasher()
    }
}

impl<K: Hash + Eq, V, S: BuildHasher> ArcCache<K, V, S> {
    /// 弹出栈顶上的数据, 最常使用的数据
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.pop_usual()==Some(("this", "arc")));
    ///     assert!(arc.len() == 1);
    /// }
    /// ```
    pub fn pop_usual(&mut self) -> Option<(K, V)> {
        if self.main_lru.len() != 0 {
            return self.main_lru.pop_usual();
        }
        self.main_lfu.pop_usual()
    }

    /// 弹出栈尾上的数据, 最久未使用的数据
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.pop_unusual()==Some(("hello", "algorithm")));
    ///     assert!(arc.len() == 1);
    /// }
    /// ```
    pub fn pop_unusual(&mut self) -> Option<(K, V)> {
        if self.main_lru.len() != 0 {
            return self.main_lru.pop_unusual();
        }
        self.main_lfu.pop_unusual()
    }

    /// 取出栈顶上的数据, 最近使用的数据
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.peek_usual()==Some((&"this", &"arc")));
    ///     assert!(arc.len() == 2);
    /// }
    /// ```
    pub fn peek_usual(&mut self) -> Option<(&K, &V)> {
        if self.main_lru.len() != 0 {
            return self.main_lru.peek_usual();
        }
        self.main_lfu.peek_usual()
    }

    /// 取出栈尾上的数据, 最久未使用的数据
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.peek_last()==Some((&"hello", &"algorithm")));
    ///     assert!(arc.len() == 2);
    /// }
    /// ```
    pub fn peek_last(&mut self) -> Option<(&K, &V)> {
        if self.main_lru.len() != 0 {
            return self.main_lru.peek_unusual();
        }
        self.main_lfu.peek_unusual()
    }

    pub fn contains_key<Q>(&mut self, k: &Q) -> bool
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.main_lru.contains_key(k) || self.main_lfu.contains_key(k)
    }

    /// 获取key值相对应的value值, 根据hash判定
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.raw_get(&"this") == Some(&"arc"));
    /// }
    /// ```
    pub fn raw_get<Q>(&self, k: &Q) -> Option<&V>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        if let Some(v) = self.main_lru.raw_get(k) {
            return Some(v);
        }
        self.main_lfu.raw_get(k)
    }

    /// 获取key值相对应的value值, 根据hash判定
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.get(&"this") == Some(&"arc"));
    /// }
    /// ```
    pub fn get<Q>(&mut self, k: &Q) -> Option<&V>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.get_key_value(k).map(|(_, v)| v)
    }

    /// 获取key值相对应的key和value值, 根据hash判定
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.get_key_value(&"this") == Some((&"this", &"arc")));
    /// }
    /// ```
    pub fn get_key_value<Q>(&mut self, k: &Q) -> Option<(&K, &V)>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.get_mut_key_value(k).map(|(k, v)| (k, &*v))
    }

    /// 获取key值相对应的value值, 根据hash判定, 可编辑被改变
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm".to_string());
    ///     arc.insert("this", "arc".to_string());
    ///     arc.get_mut(&"this").unwrap().insert_str(3, " good");
    ///     assert!(arc.get_key_value(&"this") == Some((&"this", &"arc good".to_string())));
    /// }
    /// ```
    pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.get_mut_key_value(k).map(|(_, v)| v)
    }

    #[cfg(feature = "ttl")]
    pub fn get_mut_key_value<Q>(&mut self, k: &Q) -> Option<(&K, &mut V)>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        // {
        //     if let Some(v) = self.main_lfu.get_mut_key_value(k) {
        //         return Some(v)
        //     }
        // }
        if let Some((key, val, ttl)) = self.main_lru.remove_with_ttl(k) {
            self.main_lfu.insert_with_ttl(key, val, ttl);
            return self.main_lfu.get_mut_key_value(k);
        }

        if let Some((key, val, ttl)) = self.ghost_lfu.remove_with_ttl(k) {
            self.main_lfu.full_increase();
            self.main_lru.full_decrease();
            self.main_lfu.insert_with_ttl(key, val, ttl);
            return self.main_lfu.get_mut_key_value(k);
        }

        if let Some((key, val, ttl)) = self.ghost_lru.remove_with_ttl(k) {
            self.main_lru.full_increase();
            self.main_lfu.full_decrease();
            self.main_lru.insert_with_ttl(key, val, ttl);
            return self.main_lru.get_mut_key_value(k);
        }
        self.main_lfu.get_mut_key_value(k)
    }

    #[cfg(not(feature = "ttl"))]
    pub fn get_mut_key_value<Q>(&mut self, k: &Q) -> Option<(&K, &mut V)>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        // {
        //     if let Some(v) = self.main_lfu.get_mut_key_value(k) {
        //         return Some(v)
        //     }
        // }
        if let Some((key, val)) = self.main_lru.remove(k) {
            self.main_lfu.insert(key, val);
            return self.main_lfu.get_mut_key_value(k);
        }

        if let Some((key, val)) = self.ghost_lfu.remove(k) {
            self.main_lfu.full_increase();
            self.main_lru.full_decrease();
            self.main_lfu.insert(key, val);
            return self.main_lfu.get_mut_key_value(k);
        }

        if let Some((key, val)) = self.ghost_lru.remove(k) {
            self.main_lru.full_increase();
            self.main_lfu.full_decrease();
            self.main_lru.insert(key, val);
            return self.main_lru.get_mut_key_value(k);
        }
        self.main_lfu.get_mut_key_value(k)
    }

    /// 插入值, 如果值重复将返回原来的数据
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.insert("this", "arc good") == Some(&"arc"));
    /// }
    /// ```
    #[inline(always)]
    pub fn insert(&mut self, k: K, v: V) -> Option<V> {
        self.capture_insert(k, v).map(|(_, v, _)| v)
    }

    /// 插入带有生存时间的元素
    /// 每次获取像redis一样,并不会更新生存时间
    /// 如果需要更新则需要手动的进行重新设置
    #[cfg(feature = "ttl")]
    #[inline(always)]
    pub fn insert_with_ttl(&mut self, k: K, v: V, ttl: u64) -> Option<V> {
        self.capture_insert_with_ttl(k, v, ttl).map(|(_, v, _)| v)
    }

    #[inline(always)]
    pub fn capture_insert(&mut self, k: K, v: V) -> Option<(K, V, bool)> {
        self._capture_insert_with_ttl(k, v, u64::MAX)
    }

    #[cfg(feature = "ttl")]
    #[inline(always)]
    pub fn capture_insert_with_ttl(&mut self, k: K, v: V, ttl: u64) -> Option<(K, V, bool)> {
        if ttl == 0 {
            return None;
        };
        self.has_ttl = true;
        self._capture_insert_with_ttl(k, v, ttl)
    }

    #[cfg(feature = "ttl")]
    #[allow(unused_variables)]
    fn _capture_insert_with_ttl(&mut self, k: K, v: V, ttl: u64) -> Option<(K, V, bool)> {
        if let Some((key, val, same)) = self.main_lru.capture_insert_with_ttl(k, v, ttl) {
            if same {
                Some((key, val, true))
            } else {
                self.ghost_lru.capture_insert_with_ttl(key, val, ttl)
            }
        } else {
            None
        }
    }

    #[cfg(not(feature = "ttl"))]
    #[allow(unused_variables)]
    fn _capture_insert_with_ttl(&mut self, k: K, v: V, ttl: u64) -> Option<(K, V, bool)> {
        if let Some((key, val, same)) = self.main_lru.capture_insert(k, v) {
            if same {
                Some((key, val, true))
            } else {
                self.ghost_lru.capture_insert(key, val)
            }
        } else {
            None
        }
    }

    pub fn get_or_insert<F>(&mut self, k: K, f: F) -> &V
    where
        F: FnOnce() -> V,
    {
        &*self.get_or_insert_mut(k, f)
    }

    pub fn get_or_insert_mut<F>(&mut self, k: K, f: F) -> &mut V
    where
        F: FnOnce() -> V,
    {
        if let Some((key, val)) = self.main_lru.remove(&k) {
            self.main_lfu.insert(key, val);
            return self.main_lfu.get_mut_key_value(&k).map(|(_, v)| v).unwrap();
        }

        if let Some((key, val)) = self.ghost_lfu.remove(&k) {
            self.main_lfu.full_increase();
            self.main_lru.full_decrease();
            self.main_lfu.insert(key, val);
            return self.main_lfu.get_mut_key_value(&k).map(|(_, v)| v).unwrap();
        }

        if let Some((key, val)) = self.ghost_lru.remove(&k) {
            self.main_lru.full_increase();
            self.main_lfu.full_decrease();
            self.main_lru.insert(key, val);
            return self.main_lru.get_mut_key_value(&k).map(|(_, v)| v).unwrap();
        }

        if self.main_lfu.contains_key(&k) {
            return self.main_lfu.get_mut_key_value(&k).map(|(_, v)| v).unwrap();
        }

        if self.main_lru.is_full() {
            let (pk, pv) = self.main_lru.pop_unusual().unwrap();
            self.ghost_lru.insert(pk, pv);
        }
        self.get_or_insert_mut(k, f)
    }

    #[cfg(feature = "ttl")]
    pub fn clear_expire(&mut self) {
        if !self.has_ttl {
            return;
        }
        let now = get_milltimestamp();
        if now < self.check_next {
            return;
        }
        self.check_next = now + self.check_step;
        self.main_lfu.clear_expire();
        self.main_lru.clear_expire();
    }

    #[cfg(feature = "ttl")]
    #[inline(always)]
    pub fn del_ttl<Q>(&mut self, k: &Q)
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.set_ttl(k, u64::MAX);
    }

    #[cfg(feature = "ttl")]
    pub fn set_ttl<Q>(&mut self, k: &Q, expire: u64) -> bool
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        if self.main_lru.set_ttl(k, expire) {
            return true;
        }
        self.main_lfu.set_ttl(k, expire)
    }

    #[cfg(feature = "ttl")]
    pub fn get_ttl<Q>(&mut self, k: &Q) -> Option<u64>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        if let Some(v) = self.main_lfu.get_ttl(k) {
            return Some(v);
        }
        self.main_lru.get_ttl(k)
    }

    /// 移除元素
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     assert!(arc.remove("this") == Some(("this", "arc")));
    ///     assert!(arc.len() == 1);
    /// }
    /// ```
    pub fn remove<Q>(&mut self, k: &Q) -> Option<(K, V)>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        if let Some(v) = self.main_lru.remove(k) {
            return Some(v);
        }
        if let Some(v) = self.main_lfu.remove(k) {
            return Some(v);
        }
        None
    }

    /// 根据保留当前的元素, 返回false则表示抛弃元素
    ///
    /// ```
    /// use algorithm::ArcCache;
    /// fn main() {
    ///     let mut arc = ArcCache::new(3);
    ///     arc.insert("hello", "algorithm");
    ///     arc.insert("this", "arc");
    ///     arc.insert("year", "2024");
    ///     arc.retain(|_, v| *v == "2024" || *v == "arc");
    ///     assert!(arc.len() == 2);
    ///     assert!(arc.get("this") == Some(&"arc"));
    /// }
    /// ```
    pub fn retain<F>(&mut self, mut f: F)
    where
        F: FnMut(&K, &mut V) -> bool,
    {
        self.main_lru.retain(|k, v| f(k, v));
        self.main_lfu.retain(|k, v| f(k, v));
    }
}

impl<K: Hash + Eq, V: Default, S: BuildHasher> ArcCache<K, V, S> {
    pub fn get_or_insert_default(&mut self, k: K) -> &V {
        &*self.get_or_insert_mut(k, || V::default())
    }

    pub fn get_or_insert_default_mut(&mut self, k: K) -> &mut V {
        self.get_or_insert_mut(k, || V::default())
    }
}

impl<K: Clone + Hash + Eq, V: Clone, S: Clone + BuildHasher> Clone for ArcCache<K, V, S> {
    fn clone(&self) -> Self {
        ArcCache {
            main_lfu: self.main_lfu.clone(),
            main_lru: self.main_lru.clone(),
            ghost_lru: self.ghost_lru.clone(),
            ghost_lfu: self.ghost_lfu.clone(),
            cap: self.cap,
            #[cfg(feature = "ttl")]
            check_next: self.check_next,
            #[cfg(feature = "ttl")]
            check_step: self.check_step,
            #[cfg(feature = "ttl")]
            has_ttl: self.has_ttl,
        }
    }
}

impl<K, V, S> Drop for ArcCache<K, V, S> {
    fn drop(&mut self) {
        self.clear();
    }
}

/// Convert ArcCache to iter, move out the tree.
pub struct IntoIter<K: Hash + Eq, V, S: BuildHasher> {
    base: ArcCache<K, V, S>,
}

// Drop all owned pointers if the collection is dropped
impl<K: Hash + Eq, V, S: BuildHasher> Drop for IntoIter<K, V, S> {
    #[inline]
    fn drop(&mut self) {
        for (_, _) in self {}
    }
}

impl<K: Hash + Eq, V, S: BuildHasher> Iterator for IntoIter<K, V, S> {
    type Item = (K, V);

    fn next(&mut self) -> Option<(K, V)> {
        self.base.pop_usual()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.base.len(), Some(self.base.len()))
    }
}

impl<K: Hash + Eq, V, S: BuildHasher> IntoIterator for ArcCache<K, V, S> {
    type Item = (K, V);
    type IntoIter = IntoIter<K, V, S>;

    #[inline]
    fn into_iter(self) -> IntoIter<K, V, S> {
        IntoIter { base: self }
    }
}

pub struct Iter<'a, K: 'a, V: 'a, S> {
    lru_iter: lru::Iter<'a, K, V>,
    lfu_iter: lfu::Iter<'a, K, V, S>,
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for Iter<'a, K, V, S> {
    type Item = (&'a K, &'a V);

    fn next(&mut self) -> Option<Self::Item> {
        if let Some(v) = self.lru_iter.next() {
            return Some(v);
        }
        self.lfu_iter.next()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (
            self.lru_iter.size_hint().0 + self.lfu_iter.size_hint().0,
            None,
        )
    }
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> DoubleEndedIterator for Iter<'a, K, V, S> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(v) = self.lru_iter.next_back() {
            return Some(v);
        }
        self.lfu_iter.next_back()
    }
}

impl<K: Hash + Eq, V, S: BuildHasher> DoubleEndedIterator for IntoIter<K, V, S> {
    #[inline]
    fn next_back(&mut self) -> Option<(K, V)> {
        self.base.pop_unusual()
    }
}

pub struct IterMut<'a, K: 'a, V: 'a, S> {
    lru_iter: lru::IterMut<'a, K, V>,
    lfu_iter: lfu::IterMut<'a, K, V, S>,
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for IterMut<'a, K, V, S> {
    type Item = (&'a K, &'a mut V);

    fn next(&mut self) -> Option<Self::Item> {
        if let Some(v) = self.lru_iter.next() {
            return Some(v);
        }
        self.lfu_iter.next()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (
            self.lru_iter.size_hint().0 + self.lfu_iter.size_hint().0,
            None,
        )
    }
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> DoubleEndedIterator for IterMut<'a, K, V, S> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(v) = self.lru_iter.next_back() {
            return Some(v);
        }
        self.lfu_iter.next_back()
    }
}

pub struct Keys<'a, K, V, S> {
    iter: Iter<'a, K, V, S>,
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for Keys<'a, K, V, S> {
    type Item = &'a K;

    fn next(&mut self) -> Option<Self::Item> {
        self.iter.next().map(|(k, _)| k)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        self.iter.size_hint()
    }
}

pub struct Values<'a, K, V, S> {
    iter: Iter<'a, K, V, S>,
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for Values<'a, K, V, S> {
    type Item = &'a V;

    fn next(&mut self) -> Option<Self::Item> {
        self.iter.next().map(|(_, v)| v)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        self.iter.size_hint()
    }
}

pub struct ValuesMut<'a, K, V, S> {
    iter: IterMut<'a, K, V, S>,
}

impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for ValuesMut<'a, K, V, S> {
    type Item = &'a mut V;

    fn next(&mut self) -> Option<Self::Item> {
        self.iter.next().map(|(_, v)| v)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        self.iter.size_hint()
    }
}

impl<K: Hash + Eq, V> FromIterator<(K, V)> for ArcCache<K, V, DefaultHasher> {
    fn from_iter<T: IntoIterator<Item = (K, V)>>(iter: T) -> ArcCache<K, V, DefaultHasher> {
        let mut arc = ArcCache::new(2);
        arc.extend(iter);
        arc
    }
}

impl<K: Hash + Eq, V> Extend<(K, V)> for ArcCache<K, V, DefaultHasher> {
    fn extend<T: IntoIterator<Item = (K, V)>>(&mut self, iter: T) {
        let iter = iter.into_iter();
        for (k, v) in iter {
            self.reserve(1);
            self.insert(k, v);
        }
    }
}

impl<K, V, S> PartialEq for ArcCache<K, V, S>
where
    K: Eq + Hash,
    V: PartialEq,
    S: BuildHasher,
{
    fn eq(&self, other: &ArcCache<K, V, S>) -> bool {
        if self.len() != other.len() {
            return false;
        }

        self.iter()
            .all(|(key, value)| other.raw_get(key).map_or(false, |v| *value == *v))
    }
}

impl<K, V, S> Eq for ArcCache<K, V, S>
where
    K: Eq + Hash,
    V: PartialEq,
    S: BuildHasher,
{
}

impl<K, V, S> Debug for ArcCache<K, V, S>
where
    K: Eq + Hash + Debug,
    V: Debug,
    S: BuildHasher,
{
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_map().entries(self.iter()).finish()
    }
}

impl<'a, K, V, S> Index<&'a K> for ArcCache<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Output = V;

    #[inline]
    fn index(&self, index: &K) -> &V {
        self.raw_get(index).expect("no entry found for key")
    }
}

impl<'a, K, V, S> IndexMut<&'a K> for ArcCache<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    #[inline]
    fn index_mut(&mut self, index: &K) -> &mut V {
        self.get_mut(index).expect("no entry found for key")
    }
}

unsafe impl<K: Send, V: Send, S: Send> Send for ArcCache<K, V, S> {}
unsafe impl<K: Sync, V: Sync, S: Sync> Sync for ArcCache<K, V, S> {}

#[cfg(test)]
mod tests {
    use super::ArcCache;
    use crate::DefaultHasher;

    #[test]
    fn test_insert() {
        let mut m = ArcCache::new(2);
        assert_eq!(m.len(), 0);
        m.insert(1, 2);
        assert_eq!(m.len(), 1);
        m.insert(2, 4);
        assert_eq!(m.len(), 2);
        m.insert(3, 6);
        assert_eq!(m.len(), 3);
        assert_eq!(*m.get(&1).unwrap(), 2);
        assert_eq!(m.len(), 3);
        assert_eq!(*m.get(&2).unwrap(), 4);
        assert_eq!(*m.get(&3).unwrap(), 6);
        assert_eq!(m.len(), 3);
        m.insert(4, 8);
        m.insert(5, 10);
        assert_eq!(m.len(), 5);
        m.insert(6, 12);
        assert_eq!(m.len(), 6);
        assert_eq!(*m.get(&6).unwrap(), 12);
        assert_eq!(m.len(), 5);
    }

    #[test]
    fn test_replace() {
        let mut m = ArcCache::new(2);
        assert_eq!(m.len(), 0);
        m.insert(2, 4);
        assert_eq!(m.len(), 1);
        m.insert(2, 6);
        assert_eq!(m.len(), 1);
        assert_eq!(*m.get(&2).unwrap(), 6);
    }

    #[test]
    fn test_clone() {
        let mut m = ArcCache::new(2);
        assert_eq!(m.len(), 0);
        m.insert(1, 2);
        assert_eq!(m.len(), 1);
        m.insert(2, 4);
        assert_eq!(m.len(), 2);
        let mut m2 = m.clone();
        m.clear();
        assert_eq!(*m2.get(&1).unwrap(), 2);
        assert_eq!(*m2.get(&2).unwrap(), 4);
        assert_eq!(m2.len(), 2);
    }

    #[test]
    fn test_empty_remove() {
        let mut m: ArcCache<isize, bool, DefaultHasher> = ArcCache::new(2);
        assert_eq!(m.remove(&0), None);
    }

    #[test]
    fn test_empty_iter() {
        let mut m: ArcCache<isize, bool, DefaultHasher> = ArcCache::new(2);
        assert_eq!(m.iter().next(), None);
        assert_eq!(m.iter_mut().next(), None);
        assert_eq!(m.len(), 0);
        assert!(m.is_empty());
        assert_eq!(m.into_iter().next(), None);
    }

    #[test]
    fn test_lots_of_insertions() {
        let mut m = ArcCache::new(1000);

        // Try this a few times to make sure we never screw up the hashmap's
        // internal state.
        for _ in 0..10 {
            assert!(m.is_empty());

            for i in 1..101 {
                m.insert(i, i);

                for j in 1..i + 1 {
                    let r = m.get(&j);
                    assert_eq!(r, Some(&j));
                }

                for j in i + 1..101 {
                    let r = m.get(&j);
                    assert_eq!(r, None);
                }
            }

            for i in 101..201 {
                assert!(!m.contains_key(&i));
            }

            // remove forwards
            for i in 1..101 {
                assert!(m.remove(&i).is_some());

                for j in 1..i + 1 {
                    assert!(!m.contains_key(&j));
                }

                for j in i + 1..101 {
                    assert!(m.contains_key(&j));
                }
            }

            for i in 1..101 {
                assert!(!m.contains_key(&i));
            }

            for i in 1..101 {
                m.insert(i, i);
            }

            // remove backwards
            for i in (1..101).rev() {
                assert!(m.remove(&i).is_some());

                for j in i..101 {
                    assert!(!m.contains_key(&j));
                }

                for j in 1..i {
                    assert!(m.contains_key(&j));
                }
            }
        }
    }

    #[test]
    fn test_find_mut() {
        let mut m = ArcCache::new(3);
        m.insert(1, 12);
        m.insert(2, 8);
        m.insert(5, 14);
        let new = 100;
        match m.get_mut(&5) {
            None => panic!(),
            Some(x) => *x = new,
        }
        assert_eq!(m.get(&5), Some(&new));
    }

    #[test]
    fn test_remove() {
        let mut m = ArcCache::new(3);
        m.insert(1, 2);
        assert_eq!(*m.get(&1).unwrap(), 2);
        m.insert(5, 3);
        assert_eq!(*m.get(&5).unwrap(), 3);
        m.insert(9, 4);
        assert_eq!(*m.get(&1).unwrap(), 2);
        assert_eq!(*m.get(&5).unwrap(), 3);
        assert_eq!(*m.get(&9).unwrap(), 4);
        assert_eq!(m.remove(&1).unwrap(), (1, 2));
        assert_eq!(m.remove(&5).unwrap(), (5, 3));
        assert_eq!(m.remove(&9).unwrap(), (9, 4));
        assert_eq!(m.len(), 0);
    }

    #[test]
    fn test_is_empty() {
        let mut m = ArcCache::new(2);
        m.insert(1, 2);
        assert!(!m.is_empty());
        assert!(m.remove(&1).is_some());
        assert!(m.is_empty());
    }

    #[test]
    fn test_pop() {
        let mut m = ArcCache::new(3);
        m.insert(3, 6);
        m.insert(2, 4);
        m.insert(1, 2);
        assert_eq!(m.len(), 3);
        assert_eq!(m.pop_usual(), Some((1, 2)));
        assert_eq!(m.len(), 2);
        assert_eq!(m.pop_unusual(), Some((3, 6)));
        assert_eq!(m.len(), 1);
    }

    #[test]
    fn test_iterate() {
        let mut m = ArcCache::new(32);
        for i in 0..32 {
            m.insert(i, i * 2);
        }
        assert_eq!(m.len(), 32);

        let mut observed: u32 = 0;

        for (k, v) in m.iter() {
            assert_eq!(*v, *k * 2);
            observed |= 1 << *k;
        }
        assert_eq!(observed, 0xFFFF_FFFF);
    }

    #[test]
    fn test_keys() {
        let vec = vec![(1, 'a'), (2, 'b'), (3, 'c')];
        let map: ArcCache<_, _, _> = vec.into_iter().collect();
        let keys: Vec<_> = map.keys().cloned().collect();
        assert_eq!(keys.len(), 3);
        assert!(keys.contains(&1));
        assert!(keys.contains(&2));
        assert!(keys.contains(&3));
    }

    #[test]
    fn test_values() {
        let vec = vec![(1, 'a'), (2, 'b'), (3, 'c')];
        let map: ArcCache<_, _, _> = vec.into_iter().collect();
        let values: Vec<_> = map.values().cloned().collect();
        assert_eq!(values.len(), 3);
        assert!(values.contains(&'a'));
        assert!(values.contains(&'b'));
        assert!(values.contains(&'c'));
    }

    #[test]
    fn test_values_mut() {
        let vec = vec![(1, 1), (2, 2), (3, 3)];
        let mut map: ArcCache<_, _, _> = vec.into_iter().collect();
        for value in map.values_mut() {
            *value = (*value) * 2
        }
        let values: Vec<_> = map.values().cloned().collect();
        assert_eq!(values.len(), 3);
        assert!(values.contains(&2));
        assert!(values.contains(&4));
        assert!(values.contains(&6));
    }

    #[test]
    fn test_find() {
        let mut m = ArcCache::new(2);
        assert!(m.get(&1).is_none());
        m.insert(1, 2);
        match m.get(&1) {
            None => panic!(),
            Some(v) => assert_eq!(*v, 2),
        }
    }

    #[test]
    fn test_eq() {
        let mut m1 = ArcCache::new(3);
        m1.insert(1, 2);
        m1.insert(2, 3);
        m1.insert(3, 4);

        let mut m2 = ArcCache::new(3);
        m2.insert(1, 2);
        m2.insert(2, 3);

        assert!(m1 != m2);

        m2.insert(3, 4);

        assert_eq!(m1, m2);
    }

    #[test]
    fn test_from_iter() {
        let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];

        let map: ArcCache<_, _, _> = xs.iter().cloned().collect();

        for &(k, v) in &xs {
            assert_eq!(map.raw_get(&k), Some(&v));
        }
    }

    #[test]
    fn test_size_hint() {
        let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];

        let map: ArcCache<_, _, _> = xs.iter().cloned().collect();

        let mut iter = map.iter();

        for _ in iter.by_ref().take(3) {}

        assert_eq!(iter.size_hint(), (3, None));
    }

    #[test]
    fn test_iter_len() {
        let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];

        let map: ArcCache<_, _, _> = xs.iter().cloned().collect();

        let mut iter = map.iter();

        for _ in iter.by_ref().take(3) {}

        assert_eq!(iter.count(), 3);
    }

    #[test]
    fn test_mut_size_hint() {
        let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];

        let mut map: ArcCache<_, _, _> = xs.iter().cloned().collect();

        let mut iter = map.iter_mut();

        for _ in iter.by_ref().take(3) {}

        assert_eq!(iter.size_hint(), (3, None));
    }

    #[test]
    fn test_iter_mut_len() {
        let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];

        let mut map: ArcCache<_, _, _> = xs.iter().cloned().collect();

        let mut iter = map.iter_mut();

        for _ in iter.by_ref().take(3) {}

        assert_eq!(iter.count(), 3);
    }

    #[test]
    fn test_index() {
        let mut map = ArcCache::new(2);

        map.insert(1, 2);
        map.insert(2, 1);
        map.insert(3, 4);

        assert_eq!(map[&2], 1);
    }

    #[test]
    #[should_panic]
    fn test_index_nonexistent() {
        let mut map = ArcCache::new(2);

        map.insert(1, 2);
        map.insert(2, 1);
        map.insert(3, 4);

        map[&4];
    }

    #[test]
    fn test_extend_iter() {
        let mut a = ArcCache::new(2);
        a.insert(1, "one");
        let mut b = ArcCache::new(2);
        b.insert(2, "two");
        b.insert(3, "three");

        a.extend(b.into_iter());

        assert_eq!(a.len(), 3);
        assert_eq!(a[&1], "one");
        assert_eq!(a[&2], "two");
        assert_eq!(a[&3], "three");
    }

    #[test]
    fn test_send() {
        use std::thread;

        let mut cache = ArcCache::new(4);
        cache.insert(1, "a");

        let handle = thread::spawn(move || {
            assert_eq!(cache.get(&1), Some(&"a"));
        });

        assert!(handle.join().is_ok());
    }

    #[test]
    #[cfg(feature = "ttl")]
    fn test_ttl_cache() {
        let mut lru = ArcCache::new(3);
        lru.insert_with_ttl("help", "ok", 1);
        lru.insert_with_ttl("author", "tickbh", 2);
        assert_eq!(lru.len(), 2);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("help"), None);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("author"), None);
        assert_eq!(lru.len(), 0);
    }

    #[test]
    #[cfg(feature = "ttl")]
    fn test_ttl_check_cache() {
        let mut lru = ArcCache::new(3);
        lru.set_check_step(1);
        lru.insert_with_ttl("help", "ok", 1);
        lru.insert("now", "algorithm");
        assert_eq!(lru.len(), 2);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.len(), 2);
        lru.insert_with_ttl("author", "tickbh", 3);
        assert_eq!(lru.len(), 2);
        assert_eq!(lru.get("help"), None);
        assert_eq!(lru.len(), 2);
    }

    #[test]
    #[cfg(feature = "ttl")]
    fn test_ttl_del() {
        let mut lru = ArcCache::new(3);
        lru.insert_with_ttl("help", "ok", 1);
        lru.insert_with_ttl("author", "tickbh", 2);
        assert_eq!(lru.len(), 2);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("help"), None);
        lru.del_ttl(&"author");
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("author"), Some(&"tickbh"));
        assert_eq!(lru.len(), 1);
    }

    #[test]
    #[cfg(feature = "ttl")]
    fn test_ttl_set() {
        let mut lru = ArcCache::new(3);
        lru.insert_with_ttl("help", "ok", 1);
        lru.insert_with_ttl("author", "tickbh", 2);
        lru.set_ttl(&"help", 3);
        assert_eq!(lru.len(), 2);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("help"), Some(&"ok"));
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("author"), None);
        std::thread::sleep(std::time::Duration::from_secs(1));
        assert_eq!(lru.get("help"), None);
        assert_eq!(lru.len(), 0);
    }

    #[test]
    #[cfg(feature = "ttl")]
    fn test_ttl_get() {
        let mut lru = ArcCache::new(3);
        lru.insert_with_ttl("help", "ok", 1);
        lru.insert_with_ttl("author", "tickbh", 2);
        lru.insert("now", "algorithm");
        assert!(lru.get_ttl(&"help").unwrap() <= 1);
        assert!(lru.get_ttl(&"author").unwrap() <= 2);
        assert_eq!(lru.get_ttl(&"now"), Some(u64::MAX));
    }
}