func github.com/go-redis/redis/v8.NewBoolCmd

22 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L604: func NewBoolCmd(ctx context.Context, args ...interface{}) *BoolCmd {
		commands.go#L386: 	cmd := NewBoolCmd(ctx, "client", "setname", name)
		commands.go#L462: 	cmd := NewBoolCmd(ctx, "expire", key, formatSec(ctx, expiration))
		commands.go#L468: 	cmd := NewBoolCmd(ctx, "expireat", key, tm.Unix())
		commands.go#L495: 	cmd := NewBoolCmd(ctx, "move", key, db)
		commands.go#L519: 	cmd := NewBoolCmd(ctx, "persist", key)
		commands.go#L525: 	cmd := NewBoolCmd(ctx, "pexpire", key, formatMs(ctx, expiration))
		commands.go#L531: 	cmd := NewBoolCmd(
		commands.go#L560: 	cmd := NewBoolCmd(ctx, "renamenx", key, newkey)
		commands.go#L750: 	cmd := NewBoolCmd(ctx, args...)
		commands.go#L783: 		cmd = NewBoolCmd(ctx, "setnx", key, value)
		commands.go#L786: 			cmd = NewBoolCmd(ctx, "set", key, value, "px", formatMs(ctx, expiration), "nx")
		commands.go#L788: 			cmd = NewBoolCmd(ctx, "set", key, value, "ex", formatSec(ctx, expiration), "nx")
		commands.go#L801: 		cmd = NewBoolCmd(ctx, "set", key, value, "xx")
		commands.go#L804: 			cmd = NewBoolCmd(ctx, "set", key, value, "px", formatMs(ctx, expiration), "xx")
		commands.go#L806: 			cmd = NewBoolCmd(ctx, "set", key, value, "ex", formatSec(ctx, expiration), "xx")
		commands.go#L991: 	cmd := NewBoolCmd(ctx, "hexists", key, field)
		commands.go#L1068: 	cmd := NewBoolCmd(ctx, args...)
		commands.go#L1074: 	cmd := NewBoolCmd(ctx, "hsetnx", key, field, value)
		commands.go#L1315: 	cmd := NewBoolCmd(ctx, "sismember", key, member)
		commands.go#L1335: 	cmd := NewBoolCmd(ctx, "smove", source, destination, member)
		commands.go#L2170: 	cmd := NewBoolCmd(ctx, "client", "pause", formatMs(ctx, dur))