There is an example code here:
x = XPath.newInstance("//collection/dvd[@id='B']");
Element e = (Element)x.selectSingleNode(doc);
listElement(e, "");
The question in me is how can I make it fast if the code is often called. The documentation does not say anything about it (XPath API doc).
- Are my xpath evaluators cached behind the curtains? (I dont think so)
- Are xpath evaluators thread safe with JDOM? -> could be cached in a static map
- If not thread safe, maybe they could be cached in a map in a threadlocal
- Are they expensive objects? Does it take long to produce them? Do they consume much memory?
- The xpath evaluator can be changed. Which implementation do you recommend? Are they different from the viewpoint of the questions above?
If you have experience with JDOM and XPath, let me know the answers please.