Ce site fonctionne mieux avec JavaScript.
Accueil
Explorateur
Aide
Connexion
zhimeng
/
ad_platform
Suivre
2
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Demandes d'ajout
0
Versions
0
Wiki
Activité
Parcourir la source
更新
master
huangjiajun
il y a 1 mois
Parent
a069244b57
révision
898e017dad
2 fichiers modifiés
avec
12 ajouts
et
0 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+2
-0
app/hdl/hdl_set_center.go
+10
-0
app/svc/svc_redis.go
+ 2
- 0
app/hdl/hdl_set_center.go
Voir le fichier
@@ -50,6 +50,7 @@ func SetOss(c *gin.Context) {
svc.ClearRedis(c, masterId, enum.FileBucketHost)
svc.ClearRedis(c, masterId, enum.FileBucketRegion)
svc.ClearRedis(c, masterId, enum.FileBucket)
svc.ClearAllRedis(c, masterId)
e.OutSuc(c, "success", nil)
return
}
@@ -502,6 +503,7 @@ func SetMob(c *gin.Context) {
sysCfgDb.SysCfgUpdate("mob_app_secret", req.MobAppSecret)
svc.ClearRedis(c, masterId, "mob_app_key")
svc.ClearRedis(c, masterId, "mob_app_secret")
svc.ClearAllRedis(c, masterId)
e.OutSuc(c, "success", nil)
return
}
+ 10
- 0
app/svc/svc_redis.go
Voir le fichier
@@ -9,4 +9,14 @@ import (
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)
}
}
Écrire
Aperçu
Chargement…
Annuler
Enregistrer