Is there a possibility to include this custom importer in core release?
Jukka Zitting wrote:
Hi, On 2/8/07, Shaun Barriball <[EMAIL PROTECTED]> wrote:Having read the spec relating to Session.import/export and Workspace.getImportContentHandler() I'd welcome comments on gotchas to avoid:* using 'document' versus 'system' view. I presume for backup & restore usesystem view?Correct. The document view doesn't support full roundtripping, i.e. importing an exported document view XML stream does not necessarily produce the same content structure. For example all multivalued properties are currently dropped.* "session imports" versus direct "workspace imports"Session imports stores the imported content first in the in-memory transient space before they get persisted by a separate save() call. Thus you generally want to use a workspace import for large import operations. However, note that the current Jackrabbit internals keeps even the workspace import within an internal update batch so memory requirements grow linearly in both workspace and session imports. Thus, you may want to consider using a custom importer tool that calls save() every now and then to persist the content in smaller pieces. This is however a bit troublesome if you use lots of references, as the reference targets may not yet be available when an intermediate save() is performed.* the various UID resolution modesIMPORT_UUID_COLLISION_REMOVE_EXISTING is the best mode to use when you want to recreate the exact content structure that was exported before. IMPORT_UUID_COLLISION_REPLACE_EXISTING is a good alternative if you want to keep any restructurings that have been performed on the workspace after the content was exported. IMPORT_UUID_CREATE_NEW is good if you want to create a full copy of the exported content tree without interfering with existing content in the workspace. IMPORT_UUID_COLLISION_THROW is the best alternative when migrating content to a new workspace where the same content is not supposed to already exist. BR, Jukka Zitting
smime.p7s
Description: S/MIME Cryptographic Signature
