-
Notifications
You must be signed in to change notification settings - Fork 0
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
빈자리 알림 로직 추가 #110
빈자리 알림 로직 추가 #110
Conversation
override suspend fun deleteVacancyNotification(id: String) { | ||
vacancyNotificationRepository.deleteById(id) | ||
override suspend fun deleteAll() { | ||
vacancyNotificationRepository.deleteAll() |
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.
이거 mongodb 성능 괜찮으려나?
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.
drop table 할걸?
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.
아니네.. 흠
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.
사실 데이터가 많다면 컬렉션 삭제, 재생성하고 인덱스 재생성하면 더 빠를텐데 DDL날리는것도 좀 그렇고 걍 써도 될듯
path = "/v1/vacancy-notifications/lectures", method = [RequestMethod.GET], produces = [MediaType.APPLICATION_JSON_VALUE], | ||
operation = Operation( | ||
operationId = "getVacancyNotificationLectures", | ||
responses = [ApiResponse(responseCode = "200", content = [Content(array = ArraySchema(schema = Schema(implementation = Lecture::class)))])] |
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.
우리 지난 번에 얘기한 건데 #70 (comment)
db entity 를 그대로 응답에 반환하지 않고 변환해서 전달하면 좋을 거 같아.
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.
이거 안그래도 반영중이었음
너무 리뷰가 빨랐음ㅋㅋㅋ
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.
@davin111 후속 리뷰는?
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 도 리뷰 좀..!
2a11d0a
to
fa7893c
Compare
변경사항