|
123456789101112131415161718192021222324 |
- package svc
-
- import (
- "applet/app/utils/cache"
- "fmt"
- "github.com/gin-gonic/gin"
- )
-
- func ClearRedis(c *gin.Context, masterId, key string) {
- key1 := fmt.Sprintf("%s:cfg_cache:%s", masterId, key)
- cache.Del(key1)
-
- }
-
- func ClearAllRedis(c *gin.Context, masterId string) {
- var str = []string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "%!s(MISSING)"}
-
- for _, v := range str {
- key1 := fmt.Sprintf("%s:cfg_cache:%s", masterId, v)
- cache.Del(key1)
- key2 := fmt.Sprintf("%s:cfg_cache:%s", "", v)
- cache.Del(key2)
- }
- }
|