We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f763b0d commit 2b26095Copy full SHA for 2b26095
README.md
@@ -25,8 +25,9 @@ use Hhxsv5\RMA\AnalyzeRedis;
25
26
$analyze = new AnalyzeRedis('127.0.0.1', 6379, '123456');
27
28
-//Scan the keys which can be split by '#' '*' '|'
29
-$analyze->start(['#', '*', '|']);
+//Scan the keys which can be split by '#' ':'
+//special pattern characters need to escape by '\'
30
+$analyze->start(['#', ':']);
31
32
//Find the csv file in default target folder: ./reports
33
//CSV file name format: redis-analysis-{host}-{port}-{db}.csv
0 commit comments