From e377942d2363552d62a8a9c9463cad83330e7ce1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 13 Jul 2023 07:00:47 +0200 Subject: [PATCH] app/abi/manager.go: Change cache prefix to thalos::cache. --- app/abi/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/abi/manager.go b/app/abi/manager.go index 976f161..2040a3a 100644 --- a/app/abi/manager.go +++ b/app/abi/manager.go @@ -18,7 +18,7 @@ type AbiManager struct { func NewAbiManager(rdb *redis.Client, api *eos.API, id string) *AbiManager { // Init abi cache - cache := NewCache("ship.cache."+id+".abi", &redis_cache.Options{ + cache := NewCache("thalos::cache::"+id+"::abi", &redis_cache.Options{ Redis: rdb, // Cache 10k keys for 10 minutes. LocalCache: redis_cache.NewTinyLFU(10000, 10*time.Minute),