Description
Currently the Configuration stores Property values in a Map, where the key is the Property, and the value is a Boolean specifying whether the value contains a "${", meaning it requires a string substitution.
This is not a problem in itself, but if the configuration contains properties, the Map is iterated over for each event, creating a number of temporary objects.
I propose to store the boolean value in the Property class itself (to be initialized in the constructor). This allows the Configuration to store Property values in an immutable List, which can be iterated over without creating temporary objects.
Attachments
Issue Links
- supercedes
-
LOG4J2-1282 Make RingBufferLogEvent::mergePropertiesIntoContextMap allocation-free if possible
- Closed