Question

Lately, I have spent some time trying to better understand the AEM technology stack. There are so many pieces, it seems easy to get confused. I have been looking over the JCR implementations on AEM. I keep reading that it uses CRX. However, I know that it uses Apache Jackrabbit as well. Is it using both? What is the logic behind using both implementations? When and where is each used?

A better question might be what is the relationship between CRX and Jackrabbit?

Was it helpful?

Solution

JCR (JSR-170) is the a standard Java API for content repositories. It provides an interface for Java applications to interact with content repositories, however it does not provide a repository implementation.

Apache Jackrabbit is an open source content repository implementation that fully implements the JCR API.

Adobe CRX is the commercial content repository component used in the AEM, which uses some elements of Jackrabbit (e.g. some of the security APIs). CRX provides additional features such as development tools & clustering capabilities and has its own storage mechanism which differs from the Jackrabbit implementation.

OTHER TIPS

CRX is commercial implementation of Apache Jackrabbit with features like :

  • TarPM
  • List item
  • Shared Nothing Clustering
  • LDAP Integration
  • Content Package Management

Shared Nothing Clustering 3/ LDAP Integration 4/ Content Package Management

Refer following in adobe forum

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top