Conversation
Summary of ChangesHello @Jin409, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 응원톡 마스킹 기능을 이벤트 기반 아키텍처로 재구성하여, 초기 응원톡 생성 및 전송 로직과 마스킹 로직을 분리합니다. 기존에는 마스킹이 동기적으로 처리되어 사용자가 비속어에 노출될 우려가 있었으나, 이제는 마스킹 이벤트를 발행하고 별도의 핸들러에서 비동기적으로 처리함으로써 이러한 문제를 해결하고 프론트엔드에서 중복 응원톡을 효율적으로 처리할 수 있도록 개선되었습니다. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
이번 PR은 응원톡 마스킹 기능을 이벤트 기반으로 분리하여 비동기적으로 처리하도록 개선하는 좋은 시도입니다. 이를 통해 기존에 마스킹된 내용이 DB에만 반영되던 문제를 해결하고, 사용자 경험을 향상시킬 수 있을 것으로 기대됩니다.
다만, 리뷰 과정에서 몇 가지 심각한 버그와 개선점을 발견했습니다.
CheerTalkMaskingEventHandler에서maskingCheerTalk서비스 호출 시cheerTalkId대신gameId를 전달하는 버그가 있습니다.- 마스킹 처리 후 웹소켓으로 응답을 보낼 때, 마스킹이 적용되지 않은 이전 데이터를 전송하는 문제가 있습니다.
- 트랜잭션 내에서 외부 API를 호출하는 성능 저하 유발 코드가 여전히 남아있습니다.
위 사항들은 시스템의 오작동 및 성능 저하를 일으킬 수 있으므로, 머지 전에 반드시 수정이 필요합니다. 자세한 내용은 각 파일의 리뷰 코멘트를 참고해주세요.
이슈 배경
기존의 문제
해결 방식
확인해야 할 부분