redis CROSSSLOT Keys in request don't hash to the same slot
오늘 redis scan 후 delete하는 bash shell 실행 중에 아래와 같은 오류를 봤습니다. CROSSSLOT Keys in request don't hash to the same slot scan 후에 여러 키를 삭제하려고 했더니 같은 slot에 있지 않다고 하네요 bash shell을 수정해서 key 각각 요청하도록 변경했습니다. #!/bin/bash if [ $# -ne 3 ] then echo "Delete keys from Redis matching a pattern using SCAN & DEL" echo "Usage: $0 " exit 1 fi cursor=-1 keys="" while [ $cursor -ne 0 ]; do if [ $cursor -eq -1 ] then cur..
개발
2023. 4. 7. 22:41