forked from benmanns/goworker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.go
91 lines (77 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package goworker
import (
"errors"
"net/url"
"time"
"github.com/garyburd/redigo/redis"
"github.com/youtube/vitess/go/pools"
)
var (
errorInvalidScheme = errors.New("invalid Redis database URI scheme")
deferredCommand = redis.NewScript(1, `
local v = redis.call('ZRANGE', KEYS[1], 0, 0, 'WITHSCORES')
if v[2] and tonumber(v[2]) < tonumber(ARGV[1]) then
redis.call('ZREMRANGEBYRANK', KEYS[1], 0, 0)
return v[1]
end
return nil`)
)
type RedisConn struct {
redis.Conn
}
func (r *RedisConn) Close() {
_ = r.Conn.Close()
}
func newRedisFactory(uri string) pools.Factory {
return func() (pools.Resource, error) {
return redisConnFromUri(uri)
}
}
func newRedisPool(uri string, capacity int, maxCapacity int, idleTimout time.Duration) *pools.ResourcePool {
return pools.NewResourcePool(newRedisFactory(uri), capacity, maxCapacity, idleTimout)
}
func redisConnFromUri(uriString string) (*RedisConn, error) {
uri, err := url.Parse(uriString)
if err != nil {
return nil, err
}
var network string
var host string
var password string
var db string
switch uri.Scheme {
case "redis":
network = "tcp"
host = uri.Host
if uri.User != nil {
password, _ = uri.User.Password()
}
if len(uri.Path) > 1 {
db = uri.Path[1:]
}
case "unix":
network = "unix"
host = uri.Path
default:
return nil, errorInvalidScheme
}
conn, err := redis.Dial(network, host)
if err != nil {
return nil, err
}
if password != "" {
_, err := conn.Do("AUTH", password)
if err != nil {
conn.Close()
return nil, err
}
}
if db != "" {
_, err := conn.Do("SELECT", db)
if err != nil {
conn.Close()
return nil, err
}
}
return &RedisConn{Conn: conn}, nil
}