Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Latest commit

 

History

History
53 lines (34 loc) · 1.05 KB

File metadata and controls

53 lines (34 loc) · 1.05 KB
code type title description
true
page
renamenx
MemoryStorage:renamenx

renamenx

Renames a key to newkey, only if newkey does not already exist.

[Redis documentation]


renamenx(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 a boolean specifying if the operation was successful or not.

Usage

<<< ./snippets/renamenx-1.php

Callback response:

true