chiradip opened a new issue, #2204:
URL: https://github.com/apache/iggy/issues/2204
**Title:** `[Java SDK] Implement connection pooling for better resource
management`
**Description:**
Current SDK creates single connections without pooling, limiting concurrent
operations and requiring manual pool implementation.
**Proposed Solution:**
```java
ConnectionPoolConfig poolConfig = ConnectionPoolConfig.builder()
.maxConnections(10)
.minIdle(2)
.maxIdle(5)
.keepAliveTime(Duration.ofMinutes(5))
.build();
IggyClient client = IggyClient.builder()
.connectionPool(poolConfig)
.build();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]