Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class ReservationController {

// 성능 비교를 위해 남겨둔 레거시 웨이팅 등록 API
@PostMapping("/legacy/{storeId}")
@Operation(summary = "웨이팅 등록", description = "특정 주점에 대한 웨이팅 등록 레거시")
@Operation(summary = "웨이팅 등록", description = "특정 주점에 대한 웨이팅 등록 레거시 현재는 사용하지 않음!!!!")
public ResponseEntity<?> create(
@PathVariable Long storeId,
@AuthenticationPrincipal CustomOAuth2User customOAuth2User,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class WaitingPermitLuaRepository {
if after < 0 then redis.call('SET', KEYS[3], 0) end
end

-- 2) 정확한 limit 체크 (핵심)
-- 2) limit 체크
local active = redis.call('SCARD', KEYS[2])
local holding = redis.call('ZCARD', KEYS[1])

Expand Down