Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Dom4J 1.4.2.

Right now my code creates a new SaxReader every time I want to parse a new XML document:

SAXReader reader = new SAXReader(  );

Is there any value in creating a pool of SaxReader objects and just reusing them? How much overhead is involved in creating a new SaxReader on every call?

My code could get one from the pool, parse the document then return it to the pool for another thread to use.

share|improve this question

1 Answer

up vote 3 down vote accepted

As with all so-called performance issues and urges to pool objects: are you experiencing an actual problem, or are you trying to prematurely optimize here? Rolling your own pooling in Java has been out of fashion since at least 2005.

I peeked at the source code of SAXReader, and this is the constructor:

  138       public SAXReader() {
  139       }

There are no instance initializers, and the real work is done in the read method.

share|improve this answer
Just to sum up: No. – erickson Feb 14 '09 at 0:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.