Return a substring of value at the specified key.
redis.set("key", "Hello World") assert redis.getrange("key", 0, 4) == "Hello"
The key to get.
The start index of the substring.
The end index of the substring.
The substring.
Was this page helpful?