文件缓存自动加载热门数据时检查是否有足够的内存空间

This commit is contained in:
刘祥超
2023-10-04 18:13:48 +08:00
parent 0736b20d33
commit 8561ff3e2d
2 changed files with 11 additions and 1 deletions

View File

@@ -400,6 +400,11 @@ func (this *MemoryStorage) CanSendfile() bool {
return false
}
// HasFreeSpaceForHotItems 是否有足够的空间提供给热门内容
func (this *MemoryStorage) HasFreeSpaceForHotItems() bool {
return atomic.LoadInt64(&this.usedSize) < this.memoryCapacityBytes()*3/4
}
// 计算Key Hash
func (this *MemoryStorage) hash(key string) uint64 {
return xxhash.Sum64String(key)