Get returns the string value associated with a given key and a bool determining if the key exists. If multiple entries match the given key, the first one will be returned.
(key string)
| 10 | // If multiple entries match the given key, the first one will be |
| 11 | // returned. |
| 12 | Get(key string) (val string, ok bool) |
| 13 | |
| 14 | // GetAll returns the a set of string values associated with a given |
| 15 | // key. If no entries matched the given key, an empty slice will be |
no outgoing calls