0

Is there a recommended way of migrating from Spring Data JPA to Spring Data Solr ? My spring mvc app works alright using Spring Data JPA but we now want blazing fast results delivered from our data access layer. Is there a (simple) tutorial that helps integrate/migrate from JPA to Solr ?

4

1 回答 1

1

如果您只是想让搜索索引与您的主数据存储保持同步(它将继续像现在一样运行),那么您可以查看以下链接

1、2、3 _ _ _ _

这些链接使用 ElasticSearch 而不是 Solr,但切换应该很简单。

为了使您的架构更具可扩展性,您可以做的另一件事是使用实体事件侦听器不更新搜索索引,而是将事件添加到像 RabbitMQ 这样的消息队列。然后您可以使用多个工作人员从消息队列中读取事件,然后更新搜索索引。

于 2014-04-09T06:36:57.943 回答