You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use a ThreadLocal to allow reusing parser instances
Currently scala-xml creates a new SAXParser instance every time. This
is not very good for performance, but explained by the fact that
SAXParser is not thread safe. We can greatly increase performance by
using a ThreadLocal, giving each thread their own instance.
0 commit comments