GET
Syntax
GET key
Module
genericCategories
fast keyspace readDescription
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")
Get the value at the specified key:
> GET key