Browse Source

redis util

terry 2 years ago
parent
commit
963767144a
3 changed files with 32 additions and 5 deletions
  1. 4 4
      app/dao/operationHisDao.go
  2. 27 0
      app/utils/redis.go
  3. 1 1
      main.go

+ 4 - 4
app/dao/operationHisDao.go

@@ -8,10 +8,10 @@ import (
 type OperationHis struct {
 	ID            int       `gorm:"primary_key" json:"id"`                                      //编号
 	OperationType int       `gorm:"type:int" json:"operationType"`                              //操作类型
-	ModuleType    int       `gorm:"type:int" json:"moduleType"`                                 //操作类型
-	HandleContent string    `gorm:"type:varchar(1000)" json:"handleContent"`                    //设备序编码
-	HandleUserId  string    `gorm:"type:varchar(255)" json:"handleUserId"`                      //设备序编码
-	HandleTime    time.Time `gorm:"type:timestamp;default CURRENT_TIMESTAMP" json:"handleTime"` //设备序编码
+	ModuleType    int       `gorm:"type:int" json:"moduleType"`                                 //操作模块
+	HandleContent string    `gorm:"type:varchar(1000)" json:"handleContent"`                    //操作内容
+	HandleUserId  string    `gorm:"type:varchar(255)" json:"handleUserId"`                      //操作用户ID
+	HandleTime    time.Time `gorm:"type:timestamp;default CURRENT_TIMESTAMP" json:"handleTime"` //操作时间
 	TenantId      string    `gorm:"type:varchar(12)" json:"tenantId"`                           //租户id
 }
 

+ 27 - 0
app/utils/redis.go

@@ -0,0 +1,27 @@
+package utils
+
+import (
+	"github.com/go-redis/redis"
+	"iot_manager_service/config"
+	"time"
+)
+
+var Redis *redis.Client
+
+func InitRedis() error {
+	cfg := config.Instance()
+	addr := cfg.Redis.Host
+	Redis = redis.NewClient(&redis.Options{
+		Addr:         addr,
+		DialTimeout:  10 * time.Second,
+		ReadTimeout:  30 * time.Second,
+		WriteTimeout: 30 * time.Second,
+		PoolSize:     10,
+		PoolTimeout:  30 * time.Second,
+	})
+	_, err := Redis.Ping().Result()
+	if err != nil {
+		return err
+	}
+	return nil
+}

+ 1 - 1
main.go

@@ -22,5 +22,5 @@ func main() {
 
 	engine := gin.Default()
 	router.InitRouter(engine)
-	engine.Run(config.Instance().Server.Address)
+	_ = engine.Run(config.Instance().Server.Address)
 }