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

fix: 추천 검색어 12개로 변경 #187

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions models/searchModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ async function postSearch(user_id, keyword) {
AND TIMESTAMPDIFF(MINUTE, search_time, NOW()) <= 10`,
[user_id, keyword]
);

if (isOften[0].length) {
return;
} else{
} else {
const result = await pool.query(
`INSERT INTO search_history (user_id, keyword) VALUES (?, ?)`,
[user_id, keyword]
Expand All @@ -26,9 +26,9 @@ async function getKeywordRank() {
WHERE TIMESTAMPDIFF(DAY, search_time, NOW()) <= 30
GROUP BY keyword
ORDER BY count DESC
LIMIT 5`
LIMIT 12`
);
return rows;
}

module.exports = {postSearch, getKeywordRank};
module.exports = { postSearch, getKeywordRank };
Loading