An Embeddable Datastore Engine |
Tweet |
Follow @Vedis |
Vedis Built-in Commands - Hash.
Command
HGET key field
Description
Returns the value associated with field in the hash stored at key
Return value
Value: The value associated with field, or nil when field is not present in the hash or 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> HSET config path "/usr/local/etc"
true
vedis> HGET config path
/usr/local/etc
true
vedis> HGET config path
/usr/local/etc
Copyright © Symisc Systems