docs/content/stable/yedis/api/setrange.md
SETRANGE key offset value
This command overwrites the string that is associated with the given key with the given value, starting from the given offset.
offset cannot exceed 536870911.offset is larger than the length of the specified string, the string will be padded with zeros up to the offset.key does not exist, its associated string is an empty string. The resulted new string is constructed with zeros up to the given offset and then appended with the given value.key is associated with a non-string value, an error is raised.Returns the length of the resulted string after overwriting.
$ SET yugakey "YugaKey"
"OK"
$ SETRANGE yugakey 4 "Byte"
8
$ GET yugakey
"Yugabyte"