fixing(gradle)

This commit is contained in:
2025-08-17 00:15:29 +02:00
parent 54feec19d4
commit 1738e729d7
27 changed files with 1281 additions and 241 deletions
@@ -104,7 +104,7 @@ class RedisDistributedCachePerformanceTest {
val totalOperations = numberOfCoroutines * operationsPerCoroutine
val successRate = successCounter.get().toDouble() / totalOperations
val operationsPerSecond = totalOperations / time.inWholeSeconds
val operationsPerSecond = if (time.inWholeSeconds > 0) totalOperations / time.inWholeSeconds else totalOperations * 1000 / maxOf(1, time.inWholeMilliseconds)
logger.info { "Performance test completed" }
logger.info { "Total operations: $totalOperations" }