Skip to content
New issue

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

Chore: Redis 설정 및 모듈 구현 #51

Merged
merged 6 commits into from
May 30, 2024
Merged

Chore: Redis 설정 및 모듈 구현 #51

merged 6 commits into from
May 30, 2024

Conversation

lcomment
Copy link
Collaborator

@lcomment lcomment commented May 29, 2024

Issue Number

#49

Description

Redis 설정을 완료했습니다. 서브 모듈에 prod 환경 redis 설정 관련해서 업데이트 했으니 pull 받아서 활용하실 수 있고, 로컬에서 사용하시려면 따로 띄우셔야 합니다. 대부분의 경우 통합 테스트로 검증이 가능하기에 이를 활용해주세요.

repository 관련 추상화를 진행하고 싶었는데, 아직은 잘 된거 같진 않네요. 개발하면서 추가적으로 진행해봅시다

Core Code

public interface RedisSetRepository<T> {

	void save(String value);

	void increaseScore(String value, int delta);

	List<T> findReverseByScoreRange(double min, double max);
}

etc

@lcomment lcomment added chore 빌드 매니저 및 환경 설정 feature 새로운 기능 개발 labels May 29, 2024
@lcomment lcomment self-assigned this May 29, 2024
Copy link

github-actions bot commented May 29, 2024

Test Results

39 tests   38 ✅  3s ⏱️
 7 suites   1 💤
 7 files     0 ❌

Results for commit a43c061.

♻️ This comment has been updated with latest results.

Copy link
Contributor

@YongsHub YongsHub left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다

@lcomment lcomment merged commit 230ca01 into master May 30, 2024
2 checks passed
@lcomment lcomment deleted the chore/#49 branch May 30, 2024 12:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore 빌드 매니저 및 환경 설정 feature 새로운 기능 개발
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants