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

Feat(#271): 질문 id와 solved 요청을 받으면, 해당 질문에 ACK 요청을 보낸다. #273

Conversation

platinouss
Copy link
Member

@platinouss platinouss commented Dec 12, 2023

작업 개요

close #271 발표자에게 질문 해결 응답을 받으면, 해당 질문을 완료 처리한다.

작업 사항

redis streams의 consumer group을 사용해서, 질문이 해결되면 pending list에 존재하는 해당 질문을 ACK 요청해서, 추후 발표자 재 접속 시 해결된 질문을 제외하고 재전송 할 수 있도록 설정한다.

#253 PR에서 구현했던 updateQuestionStatus() 함수를 사용하여 진행했습니다.

고민한 점들

/** 
* event: solved
*/

{
	"type": "question",
	"roomId": ${roomId},
	"questionId": ${questionId}
}

발표자가 질문 해결하면, 클라이언트에게 위와 같은 형태로 메시지를 받도록 구성했습니다.

해결된 질문의 id를 받으면, Redis에 존재하는 해당 강의실 질문 stream에 ACK 요청을 보낸다.
@platinouss platinouss added ✨ Feat 기능 개발 BE 백엔드 작업 labels Dec 12, 2023
@platinouss platinouss added this to the 6주차 milestone Dec 12, 2023
@platinouss platinouss self-assigned this Dec 12, 2023
@boostcampwm2023 boostcampwm2023 deleted a comment from netlify bot Dec 12, 2023
Copy link
Collaborator

@tmddus2 tmddus2 left a comment

Choose a reason for hiding this comment

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

수고 많으셨습니다!

@tmddus2 tmddus2 merged commit 5e807b9 into boostcampwm2023:dev Dec 12, 2023
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BE 백엔드 작업 ✨ Feat 기능 개발
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: 발표자에게 질문 해결 응답을 받으면, 해당 질문을 완료 처리한다.
2 participants