Using Solr with MySQL

后端 未结 3 823
被撕碎了的回忆
被撕碎了的回忆 2021-02-13 23:10

I was browsing some questions here concerning MySQL and faceted searches and I saw one response that suggested the use of Solr.

In my MySQL database, I have many tables

相关标签:
3条回答
  • 2021-02-13 23:24

    SOLR is a JAVA application but you can access it using any language that provides HTTP GET/POST functionality.

    for your need you should refer to http://wiki.apache.org/solr/DataImportHandler but before jumping on the Indexing part go through the tutorial at lucene.apache.org /solr /tutorial.html

    0 讨论(0)
  • 2021-02-13 23:36

    Take a look at data import handler. Apart from batch update you can also trigger update by calling update request handler. You would have to call it from your application but you can also create your own custom update request handler that would fit your needs.

    0 讨论(0)
  • 2021-02-13 23:42

    If using data import handler, use the delta import command.

    0 讨论(0)
提交回复
热议问题