1. 首页
  2. 编程语言
  3. 其他
  4. Go缓存库LRUCache.zip

Go缓存库LRUCache.zip

上传者: 2019-09-26 19:39:40上传 ZIP文件 4.52KB 热度 36次
用Go编写的一个简单的LRUCache库,示例代码:// define a type that can be used with the cachetype myCacheableValue struct {}func (v *myCacheableValue) Size() uint64 {    return 64}// create a LRUCachecache := lrucache.New(1989)// put value to the cachevalue := myCacheableValue{}cache.Set("key", value)// get value from the 
用户评论