PutString will place the string for the key into the store.
(key string, value string)
| 699 | |
| 700 | // PutString will place the string for the key into the store. |
| 701 | func (kv *kvs) PutString(key string, value string) (revision uint64, err error) { |
| 702 | return kv.Put(key, []byte(value)) |
| 703 | } |
| 704 | |
| 705 | // Create will add the key/value pair if it does not exist. |
| 706 | func (kv *kvs) Create(key string, value []byte) (revision uint64, err error) { |