mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 02:20:25 +08:00
在缓存索引中判断缓存是否存在时增加过期时间检查
This commit is contained in:
@@ -160,6 +160,11 @@ func (this *SQLiteFileList) Exist(hash string) (bool, error) {
|
|||||||
}
|
}
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if expiredAt < fasttime.Now().Unix() {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
|
||||||
this.memoryCache.Write(hash, zero.Zero{}, this.maxExpiresAtForMemoryCache(expiredAt))
|
this.memoryCache.Write(hash, zero.Zero{}, this.maxExpiresAtForMemoryCache(expiredAt))
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user