Solr学習ノート4--solrjの使用(ドキュメントの更新)
2151 ワード
eclipseでsolrjを使用してsolrインデックスを作成するには、次の点に注意してください.
1、バージョンの問題
2、バッグ
ドキュメントの更新プログラムを自分でテストしました.
ソース:
結果:
に入るhttp://localhost:8983/solr/admin/ページ、クエリー条件の入力:id:lskyne
1、バージョンの問題
2、バッグ
ドキュメントの更新プログラムを自分でテストしました.
ソース:
package solrtest;
import java.io.IOException;
import java.net.MalformedURLException;
import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.SolrServerException;
import org.apache.solr.client.solrj.impl.CommonsHttpSolrServer;
import org.apache.solr.client.solrj.request.UpdateRequest;
import org.apache.solr.client.solrj.response.UpdateResponse;
import org.apache.solr.common.SolrInputDocument;
public class test {
public static SolrServer getSolrServer() throws MalformedURLException{
//the instance can be reused
return new CommonsHttpSolrServer("http://localhost:8983/solr/");
}
public static void main(String[] args) throws SolrServerException, IOException {
// TODO Auto-generated method stub
SolrServer server = getSolrServer();
SolrInputDocument document=new SolrInputDocument();
document.addField("id", "lskyne");
document.addField("title", "welcome to solr");
server.add(document);
server.commit();
// UpdateRequest req =new UpdateRequest();
// req.setAction(UpdateRequest.ACTION.COMMIT, false, false);
// req.add(document);
// UpdateResponse rsp =req.process(server);
}
}
結果:
に入るhttp://localhost:8983/solr/admin/ページ、クエリー条件の入力:id:lskyne
<response><lst name="responseHeader"><int name="status">0</int><int name="QTime">1</int><lst name="params"><str name="indent">on</str><str name="start">0</str><str name="q">id:uid</str><str name="version">2.2</str><str name="rows">10</str></lst></lst><result name="response" numFound="1" start="0"><doc><str name="id">uid</str><arr name="title"><str> </str></arr></doc></result></response>