Increased coverage

This commit is contained in:
obscuren
2014-11-19 16:35:57 +01:00
parent 0f460ad26e
commit cab7e6000e
3 changed files with 92 additions and 49 deletions

42
ptrie/cache.go Normal file
View File

@@ -0,0 +1,42 @@
package ptrie
type Backend interface {
Get([]byte) []byte
Set([]byte, []byte)
}
type Cache struct {
store map[string][]byte
backend Backend
}
func NewCache(backend Backend) *Cache {
return &Cache{make(map[string][]byte), backend}
}
func (self *Cache) Get(key []byte) []byte {
data := self.store[string(key)]
if data == nil {
data = self.backend.Get(key)
}
return data
}
func (self *Cache) Set(key []byte, data []byte) {
self.store[string(key)] = data
}
func (self *Cache) Flush() {
for k, v := range self.store {
self.backend.Set([]byte(k), v)
}
// This will eventually grow too large. We'd could
// do a make limit on storage and push out not-so-popular nodes.
//self.Reset()
}
func (self *Cache) Reset() {
self.store = make(map[string][]byte)
}