英文:http://wiki.apache.org/solr/Solrj#Adding_Data_to_Solr
中文:http://wiki.chenlb.com/solr/doku.php?id=solrj
Solr是一个独立的企业级搜索应用服务器,它对外提供类似于Web-service的API接口。用户可以通过http请求,向搜索引擎服务器提交一定格式的XML文件,生成索引;也可以通过Http G Solret操作提出查找请求,并得到XML格式的返回结果。
Solrj 是访问 Solr 的 Java 客户端,它提供添加、更新和查询Solr 索引的接口。
CommonsHttpSolrServer 使用HTTPClient 和solr服务器进行通信。
CommonsHttpSolrServer 是线程安全的,建议重复使用CommonsHttpSolrServer 实例。
sorlr J 目前使用二进制的格式作为默认的格式。对于solr1.2的用户通过显示的设置才能使用XML格式。
CommonsHttpSorlrServer 允许设置链接属性。
EmbeddedSorrServer提供和CommonsHttpSorlrServer相同的接口,它不需要http连接。
如果你想要使用 Multicore 特性,那么你可以这样使用:
如果你在你的项目中内嵌solr服务,这将是一个不错的选择。无论你能否使用http,它都提供相同的接口。
solrj 被设计成一个可扩展的框架,用以向solr服务器提交请求,并接收回应。
我们已经将最通用的一些命令封装在了solrServer类中了。
在很多的情况下,StreamingUpdateSolrServer也挺有用的。如果你使用的是solr1.4以上的版本的话,下面的代码,或许会用得着。下面的这种方法挺好用的,尤其是当你向服务器提交数据的时候。
.
CommonsHttpSolrServer server = new CommonsHttpSolrServer(); Iterator<SolrInputDocument> iter = new Iterator<SolrInputDocument>(){ public boolean hasNext() { boolean result ; // set the result to true false to say if you have more documensts return result; } public SolrInputDocument next() { SolrInputDocument result = null; // construct a new document here and set it to result return result; } }; server.add(iter);
you may also use the addBeans(Iterator<?> beansIter) method to write pojos
这里应该要有一个相对的,get方法(没有加java注释的)来读取属性
注意: 你可以重复使用SolrServer,这样可以提高性能。
solrJ 提供了一组API,来帮助我们创建查询,下面是一个faceted query的例子。
所有的 setter/add 方法都是返回它自己本身的实例,所以就像你所看到的一样,上面的用法是链式的。