forked from valkey-io/valkey-glide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric_commands_test.go
53 lines (44 loc) · 1.44 KB
/
generic_commands_test.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
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
package api
import (
"fmt"
"github.com/valkey-io/valkey-glide/go/api/options"
)
func ExampleGlideClient_CustomCommand() {
var client *GlideClient = getExampleGlideClient() // example helper function
result, err := client.CustomCommand([]string{"ping"})
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result)
// Output: PONG
}
func ExampleGlideClient_Scan() {
var client *GlideClient = getExampleGlideClient() // example helper function
client.CustomCommand([]string{"FLUSHALL"})
client.Set("key1", "hello")
resCursor, resCollection, err := client.Scan(0)
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println("Cursor:", resCursor)
fmt.Println("Collection:", resCollection)
// Output:
// Cursor: 0
// Collection: [key1]
}
func ExampleGlideClient_ScanWithOptions() {
var client *GlideClient = getExampleGlideClient() // example helper function
opts := options.NewScanOptions().SetCount(10).SetType(options.ObjectTypeList)
client.CustomCommand([]string{"FLUSHALL"})
client.LPush("key1", []string{"1", "3", "2", "4"})
resCursor, resCollection, err := client.ScanWithOptions(0, *opts)
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println("Cursor:", resCursor)
fmt.Println("Collection:", resCollection)
// Output:
// Cursor: 0
// Collection: [key1]
}