Node#getNodes can cause many server round trips
-----------------------------------------------
Key: JCR-2549
URL: https://issues.apache.org/jira/browse/JCR-2549
Project: Jackrabbit Content Repository
Issue Type: Improvement
Components: jackrabbit-jcr2spi
Affects Versions: 2.1.0
Reporter: Michael Dürig
The call to Node#getNodes sometimes causes many server round trips:
Assume the spi implementation (for example DavEx) is configured for batch
reading with a depth 3:
Node c = session.getNode(/a/b/c)
c.getNodes()
the getNodes call on c causes a round trip to the server for each child of c
since c itself is in the cache but with the depth of 3 none of its children is
in the cache.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.