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
-o output file path, if there is no `-o` option, output to stdout
57
+
-o output file path
57
58
-n number of result, using in command: bigkey/prefix
58
59
-port listen port for flame graph web service
59
60
-sep separator for flamegraph, rdb will separate key by it, default value is ":".
60
-
supporting multi separators: -sep sep1 -sep sep2
61
+
supporting multi separators: -sep sep1 -sep sep2
61
62
-regex using regex expression filter keys
62
63
-expire filter keys by its expiration time
63
-
1. '>1751731200' '>now' get keys with expiration time greater than given time
64
-
2. '<1751731200' '<now' get keys with expiration time less than given time
65
-
3. '1751731200~1751817600' '1751731200~now' get keys with expiration time in range
66
-
4. 'noexpire' get keys without expiration time
67
-
5. 'anyexpire' get all keys with expiration time
68
-
-size filter keys by size; units supported: B/KB/MB/GB. Use the range expression 'min~max' (e.g., 1KB~1MB, 0~10MB, 1024~20KB); supports 'inf' to denote infinity(e.g., 1MB~inf)
64
+
1. '1751731200~1751817600' get keys with expiration time in range [1751731200, 1751817600]
65
+
2. '1751731200~now' 'now~1751731200' magic variable 'now' represents the current timestamp
66
+
3. '1751731200~inf' 'now~inf' magic variable 'inf' represents the Infinity
67
+
4. 'noexpire' get keys without expiration time
68
+
5. 'anyexpire' get all keys with expiration time
69
+
-size filter keys by size, supports B/KB/MB/GB/TB/PB/EB
70
+
1. '1KB~1MB' get keys with size in range [1KB, 1MB]
71
+
2. '10MB~inf' magic variable 'inf' represents the Infinity
72
+
3. '1024~10KB' get keys with size in range [0Bytes, 10KB]
73
+
-concurrent The number of concurrent json converters. 4 by default.
74
+
-show-global-meta Show global meta likes redis-verion/ctime/functions
69
75
-no-expired filter expired keys(deprecated, please use 'expire' option)
70
-
-concurrent The number of concurrent json converters. (CpuNum -1 by default, reserve a core for decoder)
71
76
72
77
Examples:
73
78
parameters between '[' and ']' is optional
@@ -79,7 +84,7 @@ parameters between '[' and ']' is optional
0 commit comments