Skip to content

Commit 73f130f

Browse files
committed
redisson-2
1 parent f1e86e2 commit 73f130f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

동시요청/src/main/java/com/example/stock/facade/RedissonLockStockFacade.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void decrease(Long id, Long quantity) {
2323
RLock lock = redissonClient.getLock(id.toString());
2424

2525
try{
26-
// 얼마나 시도할것인지, 얼마나 점유할 것인지
26+
// 얼마나 기다릴 것인지, 얼마나 최대 얼마나 점유할 것인지 (이 전에 회수 가능)
2727
boolean available = lock.tryLock(10, 1, TimeUnit.SECONDS);
2828

2929
if (!available) {

0 commit comments

Comments
 (0)