v8.run/go/exp@v0.0.26-0.20230226010534-afcdbd3f782d/cache/bcache/bcache.go (about)

     1  package bcache
     2  
     3  import "sync"
     4  
     5  type BCache struct {
     6  }
     7  
     8  type bucket struct {
     9  	l sync.Mutex
    10  }