A practical question on #3... I'm trying it and it seems to work well. Let's
say I do this:
final Session session = resourceResolver.adaptTo(Session.class);
final Node rootNode = session.getRootNode();
...and then start recursively traversing all of the nodes. Is there anything in
the Session that will accumulate the nodes I traverse? Or, will they be
reclaimable as soon as I am finished with them? Again, I am extremely paranoid
about memory usage and I cannot have an out-of-memory condition.
-----Original Message-----
From: Jason Bailey [mailto:[email protected]]
Sent: Friday, March 25, 2016 1:01 PM
To: [email protected]
Subject: RE: Out of memory during query
A couple of observations.
3. Queries are generally slow. In the most counter intuitive experience I've
ever had. We've discovered it is far faster to manually descend through the
resources and identify the items that you are searching for than any query
we've created.