
Solr
文章平均质量分 85
不熄的风
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Solr data import handler
Index a DB table directly into Solr Step 1 : Edit your solrconfig.xml to add the request handler data-config.xml Step 2 : Create a data-config.xml file as follows and save it to the conf转载 2015-03-06 21:12:18 · 1052 阅读 · 0 评论 -
Solr5 POST TOOL
Solr includes a simple command line tool for POSTing various types of content to a Solr server. The tool is bin/post. The bin/post tool is a Unix shell script; for Windows (non-Cygwin) usage, see the转载 2015-03-06 22:00:40 · 1483 阅读 · 0 评论 -
solr ref-guide
http://lucene.apache.org/solr/quickstart.html https://cwiki.apache.org/confluence/display/solr/About+This+Guide原创 2015-03-06 23:17:37 · 502 阅读 · 0 评论 -
Solr5 快速开始
http://lucene.apache.org/solr/quickstart.html 下载解压,略过。 一、按照例子启动后,solr会在“7574”和“8983”这两个节点启动起来。http://localhost:8983/solr/#/ 可以通过这个url打开solr的管理页面Solr Admin(相当于控制台)在core selector下拉框处可以选择节点进行查看。 二原创 2015-05-12 01:25:09 · 683 阅读 · 0 评论 -
Solr云(一)
solr可以设置集群,包含容灾和高可用性,称之为solr云。包含下列特点:整个集群的集中配置。负载均衡。集成zookeeper用于集群配置。 启动 :$ bin/solr -e cloud 默认为2个节点。通过命令,最多可以设置4个节点。这些节点会在一台机器上各自存在,但端口不同。 solr start -cloud -s example/cloud/node1/solr -p 89原创 2015-05-12 22:36:20 · 790 阅读 · 0 评论 -
Solr6-踩坑
一、踩坑: 1、tomcat需使用tomcat8,用7会有很多莫名其妙的错误。如admin ui页面,各种css、js资源404。。还有logging页面,各种java异常提示,servlet api方法不存在等等。 JDK1.8版本以上。 2、新版本的solr,schema.xml采用managed-schem文件,增加filed、fieldType直接在该文件中修改。 二、原创 2016-08-04 10:17:23 · 2722 阅读 · 0 评论 -
solr6-定时增量索引
1、tomcat 下的solr,web.xml增加如下配置 org.apache.solr.handler.dataimport.scheduler.ApplicationListener 2、将conf.zip解压到solr_home目录,非core下的目录。其中dataimport.proper原创 2016-08-04 16:18:00 · 1902 阅读 · 1 评论