-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
54 redis 사용하여 조회수 좋아요 카운팅 및 인기 포폴 (#76)
* refactor: api 스펙 변경 및 코드 리팩터링 * feat: Redis를 활용한 좋아요 누적 후 db 반영 * feat: 좋아요 조회수 누적 합 Map에 저장 * feat: 누적 합 zset에 점수 기록 * feat: zset 인기 포폴 Redis 캐시를 사용하여 조회 완료 * feat: 인기포폴 캐싱 완료 * fix: 좋아요 카운팅 버그 수정 * feat: 중복 조회수 적용 * feat:Redis 중복 조회수 리셋 * feat:Redis 좋아요 취소 Redis에 없을시 DB에서 취소 * feat: 변경사항 저장 * refactor : 리팩터링 * refactor : url 수정 및 security pattern 수정 * fix : 인기순위 score 반영 * refactor : 주석으로 코드 설명 * refactor : test 주석 * refactor : cors config 수정 * fix : Map -> linkedMap으로 변경 * fix : 게더링 쪽 noofffset 수정사항 반영 * fix : 코드리뷰 반영
- Loading branch information
Showing
35 changed files
with
1,193 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.palettee.global; | ||
|
||
public class Const { | ||
|
||
public static final String VIEW_PREFIX = "View_"; | ||
|
||
public static final String LIKE_PREFIX = "Like_"; | ||
|
||
} |
Oops, something went wrong.