腳本批量執行Redis命令

一、將命令寫在文件中redis

數據量比較大的話,建議用程序去生成文件。例如:shell

List<String> planIdList = planDao.findAll().parallelStream().map(PlanModel::getId).map(String::valueOf).collect(Collectors.toList()); BufferedWriter br = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("/Users/chengjiansheng/Desktop/command.txt"))); for (String planId : planIdList) { br.write("SADD PLAN_UNSYNC_S " + planId + "\r\n"); } br.flush(); br.close();

生成的文件多是這樣的:spa

接下來,命令行執行命令行

cat command.txt | redis-cli -h 127.0.0.1 -p 6379 -a 123456 --pipe

這個例子比較簡單,能夠這麼作,若是命令比較多的話能夠寫成shell腳本code

二、grep命令blog

grep "NullPointerException" access.log | wc -l grep "com\.cjs\.babyplan\.controller\.QuestionController.*118795924" access.2019-09-17.log

相關文章
相關標籤/搜索