github.com/TeaOSLab/EdgeNode@v1.3.8/internal/caches/hot_item.go (about)

     1  // Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
     2  
     3  package caches
     4  
     5  type HotItem struct {
     6  	Key  string
     7  	Hits uint32
     8  }