jdeppe-pivotal commented on a change in pull request #6409:
URL: https://github.com/apache/geode/pull/6409#discussion_r626571986
##########
File path:
geode-apis-compatible-with-redis/src/commonTest/java/org/apache/geode/redis/internal/proxy/RedisProxy.java
##########
@@ -49,7 +50,7 @@
public RedisProxy(int targetPort) {
bossGroup = new NioEventLoopGroup(1);
- workerGroup = new NioEventLoopGroup(1);
+ workerGroup = new NioEventLoopGroup(4, new
DefaultThreadFactory("RedisProxy"));
Review comment:
Good call. At some point I had changed this because I thought it was
improving performance, but I think I was mistaken. I'm setting it back to `1`.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]