package utils import ( "fmt" "github.com/astaxie/beego" "rdluck_tools/cache" ) var ( RunMode string //运行模式 MYSQL_URL string //数据库连接 REDIS_CACHE string //缓存地址 Rc *cache.Cache //redis缓存 Re error //redis错误 ) var ( STATIC_DIR string ) func init() { RunMode = beego.AppConfig.String("run_mode") config, err := beego.AppConfig.GetSection(RunMode) if err != nil { panic("配置文件读取错误 " + err.Error()) } beego.Info(RunMode + " 模式") MYSQL_URL = config["mysql_url"] REDIS_CACHE = config["beego_cache"] Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存 if Re != nil { fmt.Println(Re) panic(Re) } if RunMode == "release" { } else { } }