cstamas commented on PR #236: URL: https://github.com/apache/maven-resolver/pull/236#issuecomment-1406737583
Few perf related tips (and then am out for today): * Use latest 1.9.4 release of resolver * We could not measure perf diff on DF (original) and BF (new) collector, but user reports says BF is faster on big trees (we did not found big enough OSS projects :smile: ) * Use native http transport (instead of Wagon), that cuts HTTP request count in half (for artifact download) as it extracts checksums from response headers, instead to make another request to get checksum files * If you are on Java 11 or newer, try out HTTP/2 transports as well, they solve nicely the c10k problem and are even more faster (Central supports HTTP/2) https://github.com/apache/maven-resolver/pull/231 -- 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]
