gnodet commented on PR #12542: URL: https://github.com/apache/maven/pull/12542#issuecomment-5084742939
Closing: the `LinkedHashMap` replacement breaks the thread-safety contract that `CopyOnWriteArrayList` + `Hashtable` provided — `keySet()`/`entrySet()`/`values()` return live views of the unsynchronized `LinkedHashMap`, which race with concurrent `put()`/`remove()` calls. Benchmarks also showed no measurable wall-clock improvement (within noise at ±200ms on 676-module Camel reactor). -- 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]
