Skip to content

Commit

Permalink
fix : fix some contents
Browse files Browse the repository at this point in the history
  • Loading branch information
sungjindev committed Feb 15, 2024
1 parent 374e727 commit 3a97a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _posts/2024-02-14-spring-redis-autocorrect2.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private void saveAllSubstring(List<String> allDisplayName) { //MySQL DB에 저
for (String displayName : allDisplayName) {
redisSortedSetService.addToSortedSet(displayName + suffix); //완벽한 형태의 단어일 경우에는 *을 붙여 구분

for (int i = displayName.length()-1; i > 0; --i) { //음절 단위로 잘라서 모든 Substring 구하기
for (int i = displayName.length(); i > 0; --i) { //음절 단위로 잘라서 모든 Substring 구하기
redisSortedSetService.addToSortedSet(displayName.substring(0, i)); //곧바로 redis에 저장
}
}
Expand Down Expand Up @@ -76,7 +76,7 @@ public class StoreService {
for (String displayName : allDisplayName) {
redisSortedSetService.addToSortedSet(displayName + suffix); //완벽한 형태의 단어일 경우에는 *을 붙여 구분

for (int i = displayName.length()-1; i > 0; --i) { //음절 단위로 잘라서 모든 Substring 구하기
for (int i = displayName.length(); i > 0; --i) { //음절 단위로 잘라서 모든 Substring 구하기
redisSortedSetService.addToSortedSet(displayName.substring(0, i)); //곧바로 redis에 저장
}
}
Expand Down

0 comments on commit 3a97a87

Please sign in to comment.