Revision of 什麼是 apache solr from Tue, 2011-11-15 10:01

Apache solr 是一個搜尋器
當網站的流量, 用戶, 內容日益增加的時候
Drupal 內建的 search 很快便會變得很慢
而 apache solr 便是其中的解決方案了

Solr 本身是一個 Java 的程式,
所以安裝的時候會和一般的不一樣
但它 search 的能力是非常強
支持全文搜索, 速度快, 支持單線程多站搜索等等
它還可以加其他的插件
支持更多功能, 例如 faceted search 等等

Faceted search allows our search results to be filtered by defined criteria like category, date, author, location, or anything else that can come out of a field. We call these criteria facets. With facets, you can narrow down your search more and more until you get to the desired results.

假如你是使用 windows,
你可以很方便的使用 xampp 的 tomcat server
快速建立一個測試的 solr:

啟用 tomcat
下載 Apache solr 1.4 r22, 解壓
執行 java -jar start.jar

Google