An Embeddable Datastore Engine |
Tweet |
Follow @Vedis |
Vedis Built-in Commands - Key/Value.
Command
MOVE old_key new_key
Description
Move key values (remove old key).
Return value
Boolean: True on sucess. FALSE otherwise.
Example
Refer to the download page for some C/C++ samples on how to invoke this command from your host application.
vedis> SET test "Hello"
(true)
vedis> MOVE test message
(true)
vedis> GET test
(null)
vedis> GET message
Hello
(true)
vedis> MOVE test message
(true)
vedis> GET test
(null)
vedis> GET message
Hello
Copyright © Symisc Systems