API ReferenceJSON
JSONStrAppend
Append a string to a JSON string value
Syntax
Redix.JSONStrAppend(key, path, value, callback)Parameters
Prop
Type
Returns
number: New length of the string
Example
Redix.JSONStrAppend('character:123', '$.title', ' the Great', function(err, newLen)
print('New title length:', newLen)
end)