Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 986 Bytes

File metadata and controls

47 lines (30 loc) · 986 Bytes
code type title description
false
page
rename
MemoryStorage:rename

rename

Renames a key to newkey. If newkey already exists, it is overwritten.

[Redis documentation]


rename(key, newkey, [options], [callback])

Arguments Type Description
key string Key identifier
newkey string New key identifier
options JSON Object Optional parameters
callback function Callback

Options

Option Type Description Default
queuable boolean Make this request queuable or not true

Return value

Returns the MemoryStorage object to allow chaining.


Callback Response

Returns null if successful.

Usage

<<< ./snippets/rename-1.js