Github user franz1981 commented on the issue:
https://github.com/apache/activemq-artemis/pull/2113
It seems to me like a bug fix + some nice code gardening :+1:
@jostbg did you check if using String internally instead of SimpleString
wouldn't make things better too?
I've spent quite a lot of time with @michaelandrepearce to improve
SimpleString but String
benefit from some nice perf tricks done by the JVM and Java 9 allow them to
be compact too (byte[] backed) making their footprint smaller than SimpleString
too :)
---