You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-dev@jackrabbit.apache.org by Michael Dürig <md...@apache.org> on 2015/04/09 21:59:57 UTC

Re: svn commit: r1672350 - /jackrabbit/oak/trunk/oak-upgrade/src/main/java/org/apache/jackrabbit/oak/upgrade/RepositoryUpgrade.java

Hi,

On 9.4.15 3:47 , baedke@apache.org wrote:
> +    private List<CommitHook> customCommitHooks = null;

Note that with this approach every custom commit hook adds a full 
repository traversal, which might have an impact on the time it takes to 
migrate big repositories. A better alternative might be to let clients 
inject a list of EditorProviders and compose them to a CompositeEditor, 
which will only require a single traversal.

Michael