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

Method EvalRO

scripting_commands.go:34–36  ·  view source on GitHub ↗
(ctx context.Context, script string, keys []string, args ...interface{})

Source from the content-addressed store, hash-verified

32}
33
34func (c cmdable) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd {
35 return c.eval(ctx, "eval_ro", script, keys, args...)
36}
37
38func (c cmdable) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd {
39 return c.eval(ctx, "evalsha", sha1, keys, args...)

Callers

nothing calls this directly

Calls 1

evalMethod · 0.95

Tested by

no test coverage detected