redis.go 788 字节
package constant

var (
	REDIS_HOST    = "127.0.0.1"
	REDIS_PORT    = "6379"
	REDIS_AUTH    = ""
	REDIS_ADDRESS = ""

	// 是否关闭仓储层缓存
	ENABLE_REPOSITORY_CACHE = true
	// 缓存过期时间 单位秒
	REPOSITORY_CACHE_EXPIRE = 30 * 60
	// redis 考勤机打卡消息队列
	REDIS_ZKTECO_KEY = "allied-creation-zkteco"
	// redis 车间数据消息队列
	REDIS_WORKSHOP_KEY = "allied-creation-workshop"
)

func init() {
	REDIS_HOST = Configurator.DefaultString("REDIS_HOST", REDIS_HOST)
	REDIS_PORT = Configurator.DefaultString("REDIS_PORT", REDIS_PORT)
	REDIS_AUTH = Configurator.DefaultString("REDIS_AUTH", REDIS_AUTH)
	ENABLE_REPOSITORY_CACHE = Configurator.DefaultBool("ENABLE_REPOSITORY_CACHE", ENABLE_REPOSITORY_CACHE)
	REDIS_ADDRESS = REDIS_HOST + ":" + REDIS_PORT
}