redis.go 840 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package util
  2. import (
  3. "fmt"
  4. "github.com/go-redis/redis"
  5. "iot_manager_service/config"
  6. "time"
  7. )
  8. var Redis *redis.Client
  9. func InitRedis() error {
  10. cfg := config.Instance()
  11. addr := cfg.Redis.Host
  12. Redis = redis.NewClient(&redis.Options{
  13. Addr: addr,
  14. DialTimeout: 10 * time.Second,
  15. ReadTimeout: 30 * time.Second,
  16. WriteTimeout: 30 * time.Second,
  17. PoolSize: 10,
  18. PoolTimeout: 30 * time.Second,
  19. Password: cfg.Redis.Password,
  20. })
  21. _, err := Redis.Ping().Result()
  22. if err != nil {
  23. return err
  24. }
  25. return nil
  26. }
  27. const (
  28. DeviceStateKey = "dev_state:%s"
  29. )
  30. func GetDeviceState(sn string) int {
  31. key := fmt.Sprintf(DeviceStateKey, sn)
  32. value, err := Redis.Get(key).Int()
  33. state := 2
  34. if err != nil {
  35. fmt.Printf("GetDeviceState err = %s \n", err)
  36. return state
  37. }
  38. if value == 1 {
  39. state = 1
  40. }
  41. return state
  42. }