-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.go
51 lines (42 loc) · 1.13 KB
/
redis.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Copyright 2016 Ron Zhang <ronzxy@mx.aketi.cn>. All rights reserved.
*
* Licensed under the Apache License, version 2.0 (the "License").
* You may not use this work except in compliance with the License, which is
* available at www.apache.org/licenses/LICENSE-2.0
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied, as more fully set forth in the License.
*
* See the NOTICE file distributed with this work for information regarding copyright ownership.
*/
package orm
import (
"fmt"
"github.com/xuyu/goredis"
)
type Redis struct {
Auth string `yaml:"Auth"`
Host string `yaml:"Host"`
Port int `yaml:"Port"`
DbIndex int `yaml:"DbIndex"`
Timeout string `yaml:"Timeout"`
Maxidle int `yaml:"Maxidle"`
// Instance
Conn *goredis.Redis
}
func NewRedis() *Redis {
return &Redis{}
}
func (this *Redis) Connect() error {
var (
err error
)
this.Conn, err = goredis.DialURL(fmt.Sprintf("tcp://auth:%s@%s:%d/%d?timeout=%s&maxidle=%d",
this.Auth,
this.Host,
this.Port,
this.DbIndex,
this.Timeout,
this.Maxidle))
return err
}