折腾了一上午终于完整的展示了一下Solr功能
现在总结如下
0.注意事项
<1.在schema.xml里需要创建一个 fieldType name&#61;"text_en" 设置它的分词器等参数
<2.在schema.xml里需要创建几个fields<最好与源数据字段对应>&#xff0c;field name&#61;"name" type&#61;"text_en" 设置它所属的fieldtype
1.配置schema.xml文件
words&#61;"stopwords_en.txt"
enablePositionIncrements&#61;"true"
/>
words&#61;"stopwords_en.txt"
enablePositionIncrements&#61;"true"
/>
2.配置solrconfig.xml
3.导入数据测试
<1.将post.jar放入源数据文件夹
<2.加载测试数据
4.测试查询:http://localhost:8080/solr/core3/admin/
输入查询关键字 ipod
返回结果(说明OK)
5.更详细的内容将在后面的研究中补充起来