There was an error while loading. Please reload this page.
1 parent 490cf6d commit a7df564Copy full SHA for a7df564
1 file changed
src/main/java/com/nova/nova_server/global/config/FeedConfig.java
@@ -11,6 +11,13 @@ public class FeedConfig {
11
@Value("${feed.max-page-size:10}")
12
private int maxPageSize;
13
14
+ /**
15
+ * 피드 최대 점수<br/>
16
+ * - 기본 점수: 50<br/>
17
+ * - 키워드 매칭 시: +10<br/>
18
+ * - 북마크된 카드 뉴스와 키워드 매칭 시: +5<br/>
19
+ * 카드 뉴스 하나 당 키워드는 최대 5개이므로 최대 점수는 125점
20
+ */
21
@Value("${feed.max-score:125}")
22
private int maxScore;
23
0 commit comments