forked from DataCentricAlliance/aerodrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaerospike_query.go
49 lines (42 loc) · 1.07 KB
/
aerospike_query.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
package main
import (
"github.com/aerospike/aerospike-client-go"
"time"
)
type AeroQueryCond struct {
value string
between []string
}
type AeroQuery struct {
namespace string
set string
queries map[string]AeroQueryCond
}
func (storage *AerospikeStorage) Query(query AeroQuery) *[]*AeroResponse {
var (
record *aerospike.Record
stm *aerospike.Statement
err error
recordset *aerospike.Recordset
Bins []*AeroResponse
policy *aerospike.QueryPolicy
)
policy = aerospike.NewQueryPolicy()
policy.Timeout = time.Duration(config.Aerospike.ReadTimeout) * time.Millisecond
stm = aerospike.NewStatement(query.namespace, query.set)
for name := range query.queries {
if len(query.queries[name].value) > 0 {
stm.Addfilter(aerospike.NewEqualFilter(name, query.queries[name].value))
} else {
panic("Not supported")
}
}
if recordset, err = storage.Client.Query(policy, stm); err != nil {
panic("timeout")
return nil
}
for record = range recordset.Records {
Bins = append(Bins, RecordToAeroResponse(record))
}
return &Bins
}