You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jackrabbit.apache.org by Samuel Cox <cr...@gmail.com> on 2011/09/26 23:01:58 UTC

Node.checkin performance

Hi all,

I'm trying to deal with a performance problem when checking in a node.

Assume I have the following node A with 2 child String properties, B
and C.  A, B, and C are all versionable.  B and C have onParentVersion
copy.  When I do the following:

A.checkout
A.getProperty("B").set("prop", "value")  // pseudo
A.checkin

Does it copy C to the new version or does it do some kind of smart
handling in the sense that C didn't change so all you need is a
pointer?

We're using Jackrabbit 1.6.

Thanks.