PutString will place the string for the key into the store. If the key does not exist, it will be created. If the key exists, the value will be updated. A key has to consist of alphanumeric characters, dashes, underscores, equal signs, and dots.
(ctx context.Context, key string, value string)
| 114 | // A key has to consist of alphanumeric characters, dashes, underscores, |
| 115 | // equal signs, and dots. |
| 116 | PutString(ctx context.Context, key string, value string) (uint64, error) |
| 117 | |
| 118 | // Create will add the key/value pair if it does not exist. If the key |
| 119 | // already exists, ErrKeyExists will be returned. |
no outgoing calls