Hi, On Tue, Jun 17, 2008 at 3:57 PM, krisNog <[EMAIL PROTECTED]> wrote: > What I really need to find out is what sort of latency there is when using > RMI to make calls to the JCR API.
Most JCR-RMI calls are remote, so you'll have the overhead of a network roundtrip per each method call. There's been some discussion about avoiding so many network roundtrips by pre-fetching or caching content on the client side, but so far such improvements have only been implemented for some simple cases like RangeIterator.next(). BR, Jukka Zitting
