-
Notifications
You must be signed in to change notification settings - Fork 24
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
해시태그 팔로우 구현, 검색 API 개선 #145
Merged
Merged
Conversation
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
seonpilKim
reviewed
Mar 20, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다. 제가 작업할 부분은 이따 저녁에 수정하겠습니다.
- 이슈들 PR에 연결해주세요~
src/main/java/cloneproject/Instagram/repository/search/SearchRepositoryQuerydslImpl.java
Outdated
Show resolved
Hide resolved
src/main/java/cloneproject/Instagram/repository/search/SearchRepositoryQuerydslImpl.java
Show resolved
Hide resolved
seonpilKim
reviewed
Mar 20, 2022
src/main/java/cloneproject/Instagram/controller/SearchController.java
Outdated
Show resolved
Hide resolved
- 게시물/댓글 업로드 API: 해시태그 첫 생성 시, SearchHashtag 엔티티 생성 - 게시물/댓글 삭제 API: 해시태그를 삭제하는 경우, SearchHashtag 엔티티 제거 Resolve: #143
- 검색어와 완전히 일치하는 해시태그, 유저네임의 처리 수정 - 쿼리를 날리는 방식에서 List의 contains함수를 이용하도록 수정 - 검색 조회수 증가의 유저, 해시태그를 하나의 API로 합침
일치하는 검색어 처리 로직 수정
검색 조회수 증가 API 수정
|
seonpilKim
reviewed
Mar 22, 2022
src/main/java/cloneproject/Instagram/controller/SearchController.java
Outdated
Show resolved
Hide resolved
seonpilKim
approved these changes
Mar 22, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
해시태그 팔로우
해시태그 팔로우 구현
검색 API 개선
기존의 유저만 검색하던 API 삭제
해시태그 연관 검색어 목록 페이징 조회 API 제거
신규 검색 API
search
테이블에count
가 0 인 상태로 회원 정보 추가search
테이블에 등록하는 로직이 아직 없어 쿼리를 통해 DB에 직접insert
하여 테스트 했음-> 해당 로직 구현 후 한번더 테스트 부탁드립니다 @seonpilKim
#
이 붙은 경우엔 해시태그만 검색됨검색 조회수 증가 API
게시물-해시태그 등록 로직 업데이트
해결 이슈