How to migrate from Spring Data JPA to Spring Data Solr? -
is there recommended way of migrating spring data jpa spring data solr ? spring mvc app works alright using spring data jpa want blazing fast results delivered our data access layer. there (simple) tutorial helps integrate/migrate jpa solr ?
if want keep search index in sync main data store (which continue function now) can check out following links
the links use elasticsearch instead of solr, switch should straightforward.
one more thing in order make architecture more scalable, use entity event listeners not update search index, add event message queue rabbitmq. use multiple workers read events message queue , update search index.
Comments
Post a Comment