Search engine Lucene vs Database search

前端 未结 4 1093
深忆病人
深忆病人 2021-01-30 05:25

I am using a MySQL database and have been using database driven search. Any advantages and disadvantages of database engines and Lucene search engine? I would like to have sugge

4条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 05:54

    We used Sql Server at work to make some queries which used Fulltext search. In case of big amounts of data Sql makes an inner join between result set returned by FullText search and the rest of the query which might be slow if database is running on the low powered machine (2GB ram for 20 GB of data). Switching the same query to Lucene improved speed considerably.

提交回复
热议问题