一脖苏、 新建core
新建的solrhome文件的位置為:D:\solrhome
創(chuàng)建new_core文件夾
復(fù)制D:\solr\solrhome\configsets\basic_configs\conf到new_core文件夾中
在http://localhost:8080/solr/index.html管理界面中添加new_core
點(diǎn)擊 **add Core **按鈕進(jìn)行添加
添加成功如下:
可以在Core Selector 中對(duì)Core進(jìn)行操作
Analysis中可以對(duì)分詞器分詞效果進(jìn)行查看
Query中測試查詢
二是嗜、 添加數(shù)據(jù)項(xiàng)
-
在D:\solrhome\new_core\conf中創(chuàng)建new_core-data-config.xml文件
- 在new_core-data-config.xml文件中進(jìn)行數(shù)據(jù)設(shè)置
<dataConfig>
<document>
<entity name="solrMessage" pk="id">
<field name="id" />
<field name="title"/>
<field name="description"/>
<field name="keywords"/>
<field name="url"/>
<field name="pagepath"/>
</entity>
</document>
</dataConfig>
其中id設(shè)置為主鍵
- 在managed-schema插入如下代碼:
<field name="title" type="string" indexed="true" stored="true" required="true" multiValued="true" />
<field name="description" type="string" indexed="true" stored="true" required="true" multiValued="true" />
<field name="keywords" type="string" indexed="true" stored="true" required="true" multiValued="true" />
<field name="url" type="string" indexed="true" stored="true" required="true" multiValued="true" />
<field name="pagepath" type="string" indexed="true" stored="true" required="true" multiValued="true" />
對(duì)core的操作完成西饵。然后在solrJ中對(duì)數(shù)據(jù)項(xiàng)進(jìn)行操作
學(xué)習(xí)筆記所用谁榜,如有錯(cuò)誤歡迎指出蔼水。
參考:http://www.cnblogs.com/fengzhanfei/p/6178261.html