首页 > 其他 > 详细

安装和使用solr

时间:2017-02-26 17:41:55      阅读:265      评论:0      收藏:0      [点我收藏+]

下载Solr:wget http://apache.fayea.com/lucene/solr/6.4.1/solr-6.4.1.tgz
解压:tar -zxvf solr-6.4.1.tgz

 

bin/solr start
bin/solr create -c stdalone

bin/post -c stdalone example/exampledocs/*.xml

http://localhost:8983/solr/stdalone/select?q=video
http://localhost:8983/solr/stdalone/select?q=video&fl=id,name,price
http://localhost:8983/solr/stdalone/select?q=name:black

http://localhost:8983/solr/stdalone/select?q=price:[0%20TO%20400]&fl=id,name,price
http://localhost:8983/solr/stdalone/select?q=price:[0%20TO%20400]&fl=id, name,price&facet=true&facet.field=cat

bin/solr stop

bin/solr -e cloud

技术分享
bin/solr status
bin/solr healthcheck -c gettingstarted
bin/post -c gettingstarted example/exampledocs/*.xml

http://localhost:8983/solr/gettingstarted/select?q=price:[0%20TO%20400]&fl=id,%20name,price&facet=true&facet.field=cat

bin/solr stop -all

bin/solr -e cloud -noprompt

安装和使用solr

原文:http://www.cnblogs.com/zl0372/p/solr.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!