Keys will return all keys, filtering out any duplicates. For large datasets, this can be memory-heavy as all keys are loaded into memory. Use ListKeys for a streaming alternative.
(ctx context.Context, opts ...WatchOpt)
| 175 | // For large datasets, this can be memory-heavy as all keys are loaded |
| 176 | // into memory. Use ListKeys for a streaming alternative. |
| 177 | Keys(ctx context.Context, opts ...WatchOpt) ([]string, error) |
| 178 | |
| 179 | // ListKeys will return KeyLister, allowing to retrieve all keys from |
| 180 | // the key value store in a streaming fashion (on a channel). |
no outgoing calls