An Embeddable Datastore Engine |
Tweet |
Follow @Vedis |
Vedis Built-in Commands - Key/Value.
Command
MSET key value [key value]
Description
Sets the given keys to their respective values. MSET replaces existing values with new values, just as regular SET. See MSETNX if you don't want to overwrite existing values.
Return value
Boolean: True on success. False otherwise.
Example
Refer to the download page for some C/C++ samples on how to invoke this command from your host application.
vedis> MSET test "Hello" message "Greeting!"
(true)
vedis> MGET test message
(1) Hello
(2) Greeting!
(true)
vedis> MGET test message
(1) Hello
(2) Greeting!
Copyright © Symisc Systems