Package | Description |
---|---|
cn.hutool.cache.impl |
提供各种缓存实现
|
Modifier and Type | Class and Description |
---|---|
class |
FIFOCache<K,V>
FIFO(first in first out) 先进先出缓存.
|
class |
LFUCache<K,V>
LFU(least frequently used) 最少使用率缓存
根据使用次数来判定对象是否被持续缓存 使用率是通过访问次数计算的。 |
class |
TimedCache<K,V>
定时缓存
此缓存没有容量限制,对象只有在过期后才会被移除 |
class |
WeakCache<K,V>
弱引用缓存
对于一个给定的键,其映射的存在并不阻止垃圾回收器对该键的丢弃,这就使该键成为可终止的,被终止,然后被回收。 |
Copyright © 2024. All rights reserved.