define.go 180 B

1234567891011
  1. package common
  2. // RedisConnOpt connect redis options
  3. type RedisConnOpt struct {
  4. Enable bool
  5. Host string
  6. Port int32
  7. Password string
  8. Index int32
  9. TTL int32
  10. }