I am using WordprocessingMLPackage.load(new ByteArrayInputStream(b)) to load in the wordMLPackage on each request that requries docx manipulation but want to explore alternatives to this to improve performance down to 10s of milliseconds rather than seconds. The options explored so far include
1. WordprocessingMLPackage.load(bais) - perf metrics can be at best 500ms using a test docx
2. wordMLPackage.clone(); - perf metrics are similar to load() at 500ms using a test docx
3. Serializing results of WordprocessingMLPackage.load(bais) ...

News of Plutext