(key string)
| 127 | } |
| 128 | |
| 129 | func (this *Cache[T]) Read(key string) (item *Item[T]) { |
| 130 | var uint64Key = HashKeyString(key) |
| 131 | return this.pieces[uint64Key%this.countPieces].Read(uint64Key) |
| 132 | } |
| 133 | |
| 134 | func (this *Cache[T]) Delete(key string) { |
| 135 | var uint64Key = HashKeyString(key) |
nothing calls this directly
no test coverage detected