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

Method ZLexCount

sortedset_commands.go:219–223  ·  view source on GitHub ↗
(ctx context.Context, key, min, max string)

Source from the content-addressed store, hash-verified

217}
218
219func (c cmdable) ZLexCount(ctx context.Context, key, min, max string) *IntCmd {
220 cmd := NewIntCmd(ctx, "zlexcount", key, min, max)
221 _ = c(ctx, cmd)
222 return cmd
223}
224
225func (c cmdable) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd {
226 cmd := NewFloatCmd(ctx, "zincrby", key, increment, member)

Callers

nothing calls this directly

Calls 1

NewIntCmdFunction · 0.85

Tested by

no test coverage detected