Put will place the new value 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 []byte)
| 106 | // A key has to consist of alphanumeric characters, dashes, underscores, |
| 107 | // equal signs, and dots. |
| 108 | Put(ctx context.Context, key string, value []byte) (uint64, error) |
| 109 | |
| 110 | // PutString will place the string for the key into the store. If the |
| 111 | // key does not exist, it will be created. If the key exists, the value |
no outgoing calls