[ https://issues.apache.org/jira/browse/HTTPCORE-535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16541320#comment-16541320 ]
Oleg Kalnichevski commented on HTTPCORE-535: -------------------------------------------- Fair enough. Please raise a PR. Oleg > mod workerCount is power of two can be improved as &(workerCount-1) > -------------------------------------------------------------------- > > Key: HTTPCORE-535 > URL: https://issues.apache.org/jira/browse/HTTPCORE-535 > Project: HttpComponents HttpCore > Issue Type: Improvement > Components: HttpCore NIO > Reporter: silver9886 > Priority: Critical > > if workerCount is power of two . improve > final int i = Math.abs(currentWorker.incrementAndGet() % workerCount); > to be > final int i = Math.abs(currentWorker.incrementAndGet() & (workerCount-1) ); -- This message was sent by Atlassian JIRA (v7.6.3#76005) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org For additional commands, e-mail: dev-h...@hc.apache.org