An Embeddable Datastore Engine |
Tweet |
Follow @Vedis |
Vedis Built-in Commands - Key/Value.
Command
GET key
Description
Get the value of key. If the key does not exist the special value null is returned.
Return value
The value of key, or null when key does not exist.
Example
Refer to the download page for some C/C++ samples on how to invoke this command from your host application.
vedis> GET no_such_key
(null)
vedis> SET test "Hello"
(true)
vedis> GET test
Hello
(null)
vedis> SET test "Hello"
(true)
vedis> GET test
Hello
Copyright © Symisc Systems