github.com/egonelbre/exp@v0.0.0-20240430123955-ed1d3aa93911/cache/common.go (about)

     1  package cache
     2  
     3  type Hash string
     4  
     5  type Entry struct {
     6  	Hash Hash
     7  	Size int
     8  }
     9  
    10  type EvictFunc func(Entry)