Commit 0a86a1d7 by bergquist

updates old distcache names

parent c001cfe1
......@@ -18,7 +18,7 @@ type databaseCache struct {
func newDatabaseCache(sqlstore *sqlstore.SqlStore) *databaseCache {
dc := &databaseCache{
SQLStore: sqlstore,
log: log.New("distcache.database"),
log: log.New("remotecache.database"),
}
return dc
......
......@@ -15,7 +15,7 @@ func TestDatabaseStorageGarbageCollection(t *testing.T) {
db := &databaseCache{
SQLStore: sqlstore,
log: log.New("distcache.database"),
log: log.New("remotecache.database"),
}
obj := &CacheableStruct{String: "foolbar"}
......
......@@ -31,8 +31,8 @@ func init() {
// CacheStorage allows the caller to set, get and delete items in the cache.
// Cached items are stored as byte arrays and marshalled using "encoding/gob"
// so any struct added to the cache needs to be registred with `distcache.Register`
// ex `distcache.Register(CacheableStruct{})``
// so any struct added to the cache needs to be registred with `remotecache.Register`
// ex `remotecache.Register(CacheableStruct{})``
type CacheStorage interface {
// Get reads object from Cache
Get(key string) (interface{}, error)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment