forked from valkey-io/valkey-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmds.go
34 lines (28 loc) · 1.27 KB
/
cmds.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
package valkey
import "github.com/valkey-io/valkey-go/internal/cmds"
// Builder represents a command builder. It should only be created from the client.B() method.
type Builder = cmds.Builder
// Incomplete represents an incomplete Valkey command. It should then be completed by calling the Build().
type Incomplete = cmds.Incomplete
// Completed represents a completed Valkey command. It should only be created from the Build() of a command builder.
type Completed = cmds.Completed
// Cacheable represents a completed Valkey command which supports server-assisted client side caching,
// and it should be created by the Cache() of command builder.
type Cacheable = cmds.Cacheable
// Commands is an exported alias to []Completed.
// This allows users to store commands for later usage, for example:
//
// c, release := client.Dedicate()
// defer release()
//
// cmds := make(valkey.Commands, 0, 10)
// for i := 0; i < 10; i++ {
// cmds = append(cmds, c.B().Set().Key(strconv.Itoa(i)).Value(strconv.Itoa(i)).Build())
// }
// for _, resp := range c.DoMulti(ctx, cmds...) {
// if err := resp.Error(); err != nil {
// panic(err)
// }
//
// However, please know that once commands are processed by the Do() or DoMulti(), they are recycled and should not be reused.
type Commands []Completed