我可以将 MongoDB 用于 Java 内容存储库吗?
我可以使用 MongoDB 来存储 JCR 文件(XML 文件)吗?
Can I use MongoDB for JCR storing file (XML file)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以使用 MongoDB 来存储 JCR 文件(XML 文件)吗?
Can I use MongoDB for JCR storing file (XML file)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
Apache JackRabbit 的下一个版本(代号 Oak)包含一个基于 Mongo 的存储 - 用 Oak 术语来说就是 MicroKernel。您可以在 OAK-619:无锁 MongoMK 实现 中查看一些详细信息。
The next version of Apache JackRabbit, codename Oak includes a Mongo-based store - a MicroKernel in Oak terms. You can see some details at OAK-619: Lock-free MongoMK implementation.
否 - MongoDB 不使用传统锁定,据我所知这是 JCR 所必需的。 JCR 还包括与 Lucene 一起打包的全文搜索,而您可以在 Mongo 中进行全文搜索(使用多键),您可能没有全文搜索引擎的某些其他功能(词干提取、排名等)。
归根结底,JCR 确实是为了与 RDBMS 和全文索引一起使用。
No - MongoDB does not use traditional locking which as far as I know is required for JCR. JCR also includes Full-Text Search as packaged with Lucene, whereas you can do full text search in Mongo (using multikeys) you may not have some other features of full-text search engines (stemming, ranking, etc).
At the end of the day, JCR is really meant for use with a RDBMS and also a full-text index.
是的,Apache Jackrabbit Oak 完全支持 MongoDB,并且 mongo 实际上是您可以使用的性能最佳的后端。以下是如何完成 meta64 存储库初始化的示例:
https://github.com/Clay-Ferguson/meta64/blob/master/src/main/java/com/meta64/mobile/repo/OakRepository.java
Yes, Apache Jackrabbit Oak fully supports MongoDB, and mongo is actually the best performing backend you can use. Here is an example of how meta64 repository initialization is done:
https://github.com/Clay-Ferguson/meta64/blob/master/src/main/java/com/meta64/mobile/repo/OakRepository.java