From 41c0776568b3fa1bf825439103085146260e16a8 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 27 Jan 2021 22:56:54 +0800 Subject: Fix captcha (#14488) Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lauris BH --- modules/cache/cache.go | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'modules/cache') diff --git a/modules/cache/cache.go b/modules/cache/cache.go index 3f8885ee30..609f5a242b 100644 --- a/modules/cache/cache.go +++ b/modules/cache/cache.go @@ -27,24 +27,6 @@ func newCache(cacheConfig setting.Cache) (mc.Cache, error) { }) } -// Cache is the interface that operates the cache data. -type Cache interface { - // Put puts value into cache with key and expire time. - Put(key string, val interface{}, timeout int64) error - // Get gets cached value by given key. - Get(key string) interface{} - // Delete deletes cached value by given key. - Delete(key string) error - // Incr increases cached int-type value by given key as a counter. - Incr(key string) error - // Decr decreases cached int-type value by given key as a counter. - Decr(key string) error - // IsExist returns true if cached value exists. - IsExist(key string) bool - // Flush deletes all cached data. - Flush() error -} - // NewContext start cache service func NewContext() error { var err error @@ -59,7 +41,7 @@ func NewContext() error { } // GetCache returns the currently configured cache -func GetCache() Cache { +func GetCache() mc.Cache { return conn } -- cgit v1.2.3