Callback cannot return a non-null value as it gets overwritten by the pipeline
108번째 줄에 보이는 return 에 null이 아닌 다른 무언가를 입력하면 나타나는 에러이다.
이럴거면 return 왜 있지 ;;
https://stackoverflow.com/questions/46323026/spring-data-redis-redis-pipeline-returning-always-null
return은 파이프라인 명령의 결과를 반환하기 위해 폐기되므로 null이어야 한다고 한다.
이럴거면 return 왜 있지 ;;2222