Просмотр исходного кода

add reverse for v1.0.3 分佣规则Test

tags/v1.0.3
huangjuajun 2 лет назад
Родитель
Сommit
9395d5d4cb
7 измененных файлов: 9 добавлений и 9 удалений
  1. +2
    -2
      db/db_sys_cfg.go
  2. +2
    -2
      db/db_virtual_coin.go
  3. +1
    -1
      utils/cache/base.go
  4. +1
    -1
      utils/cache/redis.go
  5. +1
    -1
      utils/cache/redis_cluster.go
  6. +1
    -1
      utils/cache/redis_pool.go
  7. +1
    -1
      utils/cache/redis_pool_cluster.go

+ 2
- 2
db/db_sys_cfg.go Просмотреть файл

@@ -31,7 +31,7 @@ func SysCfgGetOne(Db *xorm.Engine, key string) (*model.SysCfg, error) {
func SysCfgFindWithDb(eg *xorm.Engine, masterId string, keys ...string) map[string]string {
res := map[string]string{}
cacheKey := fmt.Sprintf(md.AppCfgCacheKey, masterId)
err := zhios_order_relate_cache.GetJson(cacheKey, &res)
err := cache.GetJson(cacheKey, &res)
if err != nil || len(res) == 0 {
cfgList, _ := SysCfgGetAll(eg)
if cfgList == nil {
@@ -40,7 +40,7 @@ func SysCfgFindWithDb(eg *xorm.Engine, masterId string, keys ...string) map[stri
for _, v := range *cfgList {
res[v.Key] = v.Val
}
zhios_order_relate_cache.SetJson(cacheKey, res, md.CfgCacheTime)
cache.SetJson(cacheKey, res, md.CfgCacheTime)
}
if len(keys) == 0 {
return res


+ 2
- 2
db/db_virtual_coin.go Просмотреть файл

@@ -13,13 +13,13 @@ func VirtualCoinListInUse(Db *xorm.Engine, masterId string) ([]*model.VirtualCoi
var m []*model.VirtualCoin
cacheKey := fmt.Sprintf(md.VirtualCoinCfgCacheKey, masterId)

err := zhios_order_relate_cache.GetJson(cacheKey, &m)
err := cache.GetJson(cacheKey, &m)
if err != nil || len(m) == 0 {
err := Db.Where("is_use=1").Find(&m)
if err != nil {
return nil, err
}
zhios_order_relate_cache.SetJson(cacheKey, m, md.CfgCacheTime)
cache.SetJson(cacheKey, m, md.CfgCacheTime)
}

return m, nil


+ 1
- 1
utils/cache/base.go Просмотреть файл

@@ -1,4 +1,4 @@
package zhios_order_relate_cache
package cache

import (
"errors"


+ 1
- 1
utils/cache/redis.go Просмотреть файл

@@ -1,4 +1,4 @@
package zhios_order_relate_cache
package cache

import (
"encoding/json"


+ 1
- 1
utils/cache/redis_cluster.go Просмотреть файл

@@ -1,4 +1,4 @@
package zhios_order_relate_cache
package cache

import (
"strconv"


+ 1
- 1
utils/cache/redis_pool.go Просмотреть файл

@@ -1,4 +1,4 @@
package zhios_order_relate_cache
package cache

import (
"errors"


+ 1
- 1
utils/cache/redis_pool_cluster.go Просмотреть файл

@@ -1,4 +1,4 @@
package zhios_order_relate_cache
package cache

import (
"strconv"


Загрузка…
Отмена
Сохранить