We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb4e15 commit f763b0dCopy full SHA for f763b0d
examples/test.php
@@ -5,8 +5,9 @@
5
6
$analyze = new AnalyzeRedis('127.0.0.1', 6379, '123456');
7
8
-//Scan the keys which can be split by '#' '*' '|'
9
-$analyze->start(['#', '*', '|']);
+//Scan the keys which can be split by '#' ':'
+//special pattern characters need to escape by '\'
10
+$analyze->start(['#', ':']);
11
12
//Find the csv file in default target folder: ./reports
13
//CSV file name format: redis-analysis-{host}-{port}-{db}.csv
0 commit comments