-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.go
229 lines (176 loc) · 4.34 KB
/
index.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package autocomplete
import (
"bytes"
"encoding/base64"
"encoding/binary"
"encoding/json"
"fmt"
"strings"
"github.com/garyburd/redigo/redis"
)
// Index indexes a document for autocomplete search
func (a *Autocomplete) Index(index string, d Document, score uint64) error {
conn := a.pool.Get()
defer conn.Close()
docKey := key(d)
b, err := json.Marshal(d)
if err != nil {
return err
}
switch a.indexType {
case PrefixesIndexing:
if err := conn.Send("MULTI"); err != nil {
return err
}
for _, p := range prefixes(d) {
if err := conn.Send("ZADD", a.prefix+":"+index+":"+p,
score, docKey); err != nil {
return err
}
}
case TermsIndexing:
exists, err := redis.Bool(conn.Do("HEXISTS", a.prefix+":$"+index, docKey))
if err != nil {
return err
}
if exists {
return fmt.Errorf("%+v is already indexed in %s",
d, index)
}
scoreStr, err := scoreString(score)
if err != nil {
return err
}
if err := conn.Send("MULTI"); err != nil {
return err
}
val := strings.ToLower(d.Term()) + "::" + scoreStr + "::" + docKey
if err := conn.Send("ZADD", a.prefix+":$$"+index, 0, val); err != nil {
return err
}
default:
return ErrInvalidIndexType
}
if err := conn.Send(
"HSET", a.prefix+":$"+index, docKey, string(b)); err != nil {
return err
}
if _, err := conn.Do("EXEC"); err != nil {
return err
}
return nil
}
// RemoveDocument removes a document from the autocomplete search index
func (a *Autocomplete) RemoveDocument(index string, d Document) error {
conn := a.pool.Get()
defer conn.Close()
docKey := key(d)
switch a.indexType {
case PrefixesIndexing:
for _, p := range prefixes(d) {
if err := conn.Send("MULTI"); err != nil {
return err
}
if err := conn.Send(
"ZREM", a.prefix+":"+index+":"+p, docKey); err != nil {
return err
}
}
case TermsIndexing:
script, ok := a.scripts["removeDocument"]
if !ok {
return fmt.Errorf("initialization error")
}
zmember, err := redis.String(script.Do(conn, a.prefix+":$$"+index, docKey))
if err != nil {
return err
}
if err := conn.Send("MULTI"); err != nil {
return err
}
if err := conn.Send(
"ZREM", a.prefix+":$$"+index, zmember); err != nil {
return err
}
default:
return ErrInvalidIndexType
}
if err := conn.Send(
"HDEL", a.prefix+":"+"$"+index, docKey); err != nil {
return err
}
if _, err := conn.Do("EXEC"); err != nil {
return err
}
return nil
}
// UpdateDocument updates a document in the autocomplete search index,
// only the document's data can be updated because the key is generated from
// a combination of the document id and name.
//
// if one of those is changed, the document should be removed and re-indexed
func (a *Autocomplete) UpdateDocument(index string, d Document) error {
conn := a.pool.Get()
defer conn.Close()
docKey := key(d)
exists, err := redis.Bool(conn.Do("HEXISTS", a.prefix+":$"+index, docKey))
if err != nil {
return err
}
if !exists {
return fmt.Errorf("%s does not contain %s", a.prefix+":$"+index, docKey)
}
b, err := json.Marshal(d)
if err != nil {
return err
}
if _, err := conn.Do(
"HSET", a.prefix+":$"+index, docKey, string(b)); err != nil {
return err
}
return nil
}
// UpdateScore updates the score of a document
func (a *Autocomplete) UpdateScore(index string, d Document, score uint64) error {
conn := a.pool.Get()
defer conn.Close()
docKey := key(d)
switch a.indexType {
case PrefixesIndexing:
if err := conn.Send("MULTI"); err != nil {
return err
}
for _, p := range prefixes(d) {
if err := conn.Send("ZADD", a.prefix+":"+index+":"+p,
score, docKey); err != nil {
return err
}
}
if _, err := conn.Do("EXEC"); err != nil {
return err
}
case TermsIndexing:
script, ok := a.scripts["updateScore"]
if !ok {
return fmt.Errorf("initialization error")
}
scoreStr, err := scoreString(score)
if err != nil {
return err
}
val := strings.ToLower(d.Term()) + "::" + scoreStr + "::" + docKey
if _, err := script.Do(conn, a.prefix+":$$"+index, docKey, val); err != nil {
return err
}
default:
return ErrInvalidIndexType
}
return nil
}
func scoreString(score uint64) (string, error) {
buf := new(bytes.Buffer)
if err := binary.Write(buf, binary.BigEndian, score); err != nil {
return "", err
}
return base64.URLEncoding.EncodeToString(buf.Bytes()), nil
}