You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support the following params: --include-keys (regex) --exclude-keys (regex)
By default it includes all keys. If there are any include-exclude params given, they will be executed in chain, and the key will be included based on the output.
For example
redis-dump .... --include-keys foo-.* --exclude-keys foo-bar-.* would include bar, foo-2, but not foo-bar-2
redis-dump .... --exclude-keys .* . --include-keys foo-[0-9]+ would exclude bar, foo-bar-2, but include foo-2
The text was updated successfully, but these errors were encountered:
Support the following params:
--include-keys (regex)
--exclude-keys (regex)
By default it includes all keys. If there are any include-exclude params given, they will be executed in chain, and the key will be included based on the output.
For example
redis-dump .... --include-keys foo-.* --exclude-keys foo-bar-.*
would includebar
,foo-2
, but notfoo-bar-2
redis-dump .... --exclude-keys .* . --include-keys foo-[0-9]+
would excludebar
,foo-bar-2
, but includefoo-2
The text was updated successfully, but these errors were encountered: