| 3 | import "container/list" |
| 4 | |
| 5 | type LRU struct { |
| 6 | maxByte int64 |
| 7 | useByte int64 |
| 8 | ll *list.List |
| 9 | cache map[string]*list.Element |
| 10 | CallBack func(key string, val []byte) |
| 11 | } |
| 12 | |
| 13 | type Node struct { |
| 14 | Key string |
nothing calls this directly
no outgoing calls
no test coverage detected