- Issue created by @valthebald
- bc77db87 committed on 1.0.x
Issue #3494951: Delayed logging feature
- bc77db87 committed on 1.0.x
Currently, log messages are added to solr on every log() call. This also possibly establishes connection to solr anew, adding overhead to request processing.
Add an option to bulk-log all the messages in the end of request, only establishing the connection to Solr server if there are messages.
This has to be switchable, in order to be able to log messages when kernel crashes before termination.
Write the patch
New boolean "Delayed log" setting in solrlog.settings (on by default, no change for existing installations)
Active
1.0
Code
It affects performance. It is often combined with the Needs profiling tag.
Issue #3494951: Delayed logging feature