Arguments
str
required
The name of the Redis key.
Response
The length of the value.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
redis.set("key", "Hello World")
assert redis.strlen("key") == 11
Return the length of a string stored at a key.
redis.set("key", "Hello World")
assert redis.strlen("key") == 11
Was this page helpful?