Skip to content

Commit

Permalink
fix: empty_marker 타입 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mcodnjs committed Jan 30, 2024
1 parent 68882fe commit 2378fa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class LikeRedisConstants {
public static final String LIKE_KEY_PREFIX = "like:";
public static final String WILD_CARD = "*";
public static final String KEY_SEPARATOR = ":";
public static final String EMPTY_MARKER = "empty";
public static final Long EMPTY_MARKER = -1L;
public static final Duration LIKE_TTL = Duration.ofMinutes(90L);

public static String generateLikeKey(final Long tripId) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package hanglog.like.service;

import static hanglog.like.domain.LikeRedisConstants.EMPTY_MARKER;
import static hanglog.like.domain.LikeRedisConstants.LIKE_KEY_PREFIX;
import static hanglog.like.domain.LikeRedisConstants.KEY_SEPARATOR;
import static hanglog.like.domain.LikeRedisConstants.LIKE_KEY_PREFIX;
import static hanglog.like.domain.LikeRedisConstants.WILD_CARD;
import static hanglog.like.domain.LikeRedisConstants.generateLikeKey;

Expand Down

0 comments on commit 2378fa4

Please sign in to comment.