summaryrefslogtreecommitdiffstats
path: root/store/redis_supplier_schemes.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/redis_supplier_schemes.go')
-rw-r--r--store/redis_supplier_schemes.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/store/redis_supplier_schemes.go b/store/redis_supplier_schemes.go
index 1af9dafde..ae3336148 100644
--- a/store/redis_supplier_schemes.go
+++ b/store/redis_supplier_schemes.go
@@ -19,6 +19,11 @@ func (s *RedisSupplier) SchemeGet(ctx context.Context, schemeId string, hints ..
return s.Next().SchemeGet(ctx, schemeId, hints...)
}
+func (s *RedisSupplier) SchemeGetByName(ctx context.Context, schemeName string, hints ...LayeredStoreHint) *LayeredStoreSupplierResult {
+ // TODO: Redis caching.
+ return s.Next().SchemeGetByName(ctx, schemeName, hints...)
+}
+
func (s *RedisSupplier) SchemeDelete(ctx context.Context, schemeId string, hints ...LayeredStoreHint) *LayeredStoreSupplierResult {
// TODO: Redis caching.
return s.Next().SchemeDelete(ctx, schemeId, hints...)