Browse Source

updates old distcache names

bergquist 7 years ago
parent
commit
0a86a1d7b6

+ 1 - 1
pkg/infra/remotecache/database_storage.go

@@ -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

+ 1 - 1
pkg/infra/remotecache/database_storage_test.go

@@ -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"}

+ 2 - 2
pkg/infra/remotecache/remotecache.go

@@ -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)