GET | SugarDB (original) (raw)
Syntax
GET key
Module
generic
Categories
fast keyspace read
Description
Get the value at the specified key.
Examples
- Go (Embedded)
- CLI
Get the value at the specified key:
db, err := sugardb.NewSugarDB()
if err != nil {
log.Fatal(err)
}
value, err := db.Get("key")