MCPcopy
hub / github.com/redis/go-redis / ARSet

Method ARSet

array_commands.go:14–14  ·  view source on GitHub ↗
(ctx context.Context, key string, index uint64, values ...string)

Source from the content-addressed store, hash-verified

12// Redis array supports index range [0, math.MaxUint64-1), so index parameters use uint64.
13type ArrayCmdable interface {
14 ARSet(ctx context.Context, key string, index uint64, values ...string) *IntCmd
15 ARGet(ctx context.Context, key string, index uint64) *StringCmd
16 ARGetRange(ctx context.Context, key string, start, end uint64) *SliceCmd
17 ARMGet(ctx context.Context, key string, indexes ...uint64) *SliceCmd

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected