String functions
strSet
The strSet command stores or updates a string value associated with a specified key. If the key already exists, its value is overwritten.
-> Read More
strAppend
The strAppend command is used to append one or more string values to an existing string stored at a given key. If the key does not exist, it creates a new entry with the concatenated value.
-> Read More
strRange
The strRange command returns a substring from a string value stored at a specified key, based on start and end offsets (inclusive). It supports negative indices, enabling easy access to characters counted from the end of the string.
-> Read More
strGet
The strGet command is used to retrieve the string value associated with a specified key. If the key does not exist or has a different data type, appropriate responses are returned. This command is safe to use for read-only operations and ensures type safety for string keys.
-> Read More
strLength
The strLength command is used to retrieve the length (in characters) of a string value stored at a specified key in the Fleare key-value store. If the key does not exist, it returns 0. It validates the key and ensures the value is of string type.
-> Read More