We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재 좋아요/싫어요 를 클릭했을 때 동시성 문제를 방지하기 위해 Redis 를 사용했습니다.
하지만, 굳이 해당 기능에서 동시성 문제만을 해결하기 위해 Redis 를 사용하는 것은 비효율적이라 판단하였고, JPA와 MySQL 만을 이용하여 해당 기능을 정상적으로 수행할 수 있도록 코드를 리팩토링 하려고 합니다.
Redis 의존을 걷어내고 JPA와 MySQL 만을 활용하여 좋아요/싫어요 기능을 구현한 뒤, 테스트 코드를 통한 검증
The text was updated successfully, but these errors were encountered:
alexization
Successfully merging a pull request may close this issue.
기존 문제점
현재 좋아요/싫어요 를 클릭했을 때 동시성 문제를 방지하기 위해 Redis 를 사용했습니다.
하지만, 굳이 해당 기능에서 동시성 문제만을 해결하기 위해 Redis 를 사용하는 것은 비효율적이라 판단하였고, JPA와 MySQL 만을 이용하여 해당 기능을 정상적으로 수행할 수 있도록 코드를 리팩토링 하려고 합니다.
목표
Redis 의존을 걷어내고 JPA와 MySQL 만을 활용하여 좋아요/싫어요 기능을 구현한 뒤, 테스트 코드를 통한 검증
The text was updated successfully, but these errors were encountered: