21 lines
367 B
Bash
21 lines
367 B
Bash
#!/bin/bash
|
|
#!/bin/bash
|
|
# 清除俱乐部用户卡死数据
|
|
IP="127.0.0.1"
|
|
Port=3801
|
|
Pass="123456"
|
|
Redis="redis-cli -h $IP -p $Port -a $Pass -n 15 "
|
|
|
|
for i in ClubTodayIncome ClubUserWeekCount* ClubUserInfo* ClubApplyDealLock* ClubTableInfo* ClubSumAssetInfo* ClubChangeNameCount;
|
|
do
|
|
echo $i
|
|
$Redis keys $i | xargs $Redis -n 15 del
|
|
$Redis keys $i
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|