`

SolrJ的使用

    博客分类:
  • solr
 
阅读更多

CommonsHttpSolrServer

    CommonsHttpSolrServer 使用HTTPClient 和solr服务器进行通信。

Java代码 复制代码  收藏代码
  1. String url =  "http://localhost:8983/solr" ;   
  2.   SolrServer server =  new  CommonsHttpSolrServer( url );  
[java] view plain copy
  1. String url =  "http://localhost:8983/solr" ;  
  2.   SolrServer server = new  CommonsHttpSolrServer( url );  

 

   CommonsHttpSolrServer 是线程安全的,建议重复使用CommonsHttpSolrServer 实例。

  Setting XMLResponseParser

     sorlr J 目前使用二进制的格式作为默认的格式。对于solr1.2的用户通过显示的设置才能使用XML格式。

 

Java代码 复制代码  收藏代码
  1. server.setParser( new  XMLResponseParser());  
[java] view plain copy
  1. server.setParser( new  XMLResponseParser());  

 

   Changing other Connection Settings

      CommonsHttpSorlrServer 允许设置链接属性。

 

Java代码 复制代码  收藏代码
  1. String url =  "http://localhost:8983/solr"   
  2.   CommonsHttpSolrServer server =  new  CommonsHttpSolrServer( url );   
  3.   server.setSoTimeout( 1000 );   // socket read timeout   
  4.   server.setConnectionTimeout( 100 );   
  5.   server.setDefaultMaxConnectionsPerHost( 100 );   
  6.   server.setMaxTotalConnections( 100 );   
  7.   server.setFollowRedirects( false );   // defaults to false   
  8.    // allowCompression defaults to false.   
  9.    // Server side must support gzip or deflate for this to have any effect.   
  10.   server.setAllowCompression( true );   
  11.   server.setMaxRetries( 1 );  // defaults to 0.  > 1 not recommended.   
[java] view plain copy
  1. String url =  "http://localhost:8983/solr"   
  2.   CommonsHttpSolrServer server = new  CommonsHttpSolrServer( url );  
  3.   server.setSoTimeout(1000 );   // socket read timeout   
  4.   server.setConnectionTimeout(100 );  
  5.   server.setDefaultMaxConnectionsPerHost(100 );  
  6.   server.setMaxTotalConnections(100 );  
  7.   server.setFollowRedirects(false );   // defaults to false   
  8.   // allowCompression defaults to false.   
  9.   // Server side must support gzip or deflate for this to have any effect.   
  10.   server.setAllowCompression(true );  
  11.   server.setMaxRetries(1 );  // defaults to 0.  > 1 not recommended.   

 

EmbeddedSolrServer

      EmbeddedSorrServer提供和CommonsHttpSorlrServer相同的接口,它不需要http连接。

 

Java代码 复制代码  收藏代码
  1. //注意,下面的属性也是可以在jvm参数里面设置的   
  2.   System.setProperty( "solr.solr.home" "/home/shalinsmangar/work/oss/branch-1.3/example/solr" );   
  3.   CoreContainer.Initializer initializer =  new  CoreContainer.Initializer();   
  4.   CoreContainer coreContainer = initializer.initialize();   
  5.   EmbeddedSolrServer server =  new  EmbeddedSolrServer(coreContainer,  "" );    
[java] view plain copy
  1. //注意,下面的属性也是可以在jvm参数里面设置的   
  2.   System.setProperty("solr.solr.home" "/home/shalinsmangar/work/oss/branch-1.3/example/solr" );  
  3.   CoreContainer.Initializer initializer = new  CoreContainer.Initializer();  
  4.   CoreContainer coreContainer = initializer.initialize();  
  5.   EmbeddedSolrServer server = new  EmbeddedSolrServer(coreContainer,  "" );    

 

   如果你想要使用 Multicore 特性,那么你可以这样使用:

 

Java代码 复制代码  收藏代码
  1. File home =  new  File( getSolrHome() );   
  2.    File f =  new  File( home,  "solr.xml"  );   
  3.    multicore.load( getSolrHome(), f );   
  4.   
  5.    EmbeddedSolrServer server =  new  EmbeddedSolrServer( multicore,  "core name as defined in solr.xml"  );  
[java] view plain copy
  1. File home =  new  File( getSolrHome() );  
  2.    File f = new  File( home,  "solr.xml"  );  
  3.    multicore.load( getSolrHome(), f );  
  4.   
  5.    EmbeddedSolrServer server = new  EmbeddedSolrServer( multicore,  "core name as defined in solr.xml"  );  

 

    如果你在你的项目中内嵌solr服务,这将是一个不错的选择。无论你能否使用http,它都提供相同的接口。

  用法

    solrj 被设计成一个可扩展的框架,用以向solr服务器提交请求,并接收回应。

    我们已经将最通用的一些命令封装在了solrServer类中了。

 

   Adding Data to Solr

  •     首先需要获得一个server的实例, 
Java代码 复制代码  收藏代码
  1. SolrServer server = getSolrServer();  
[java] view plain copy
  1. SolrServer server = getSolrServer();  
  • 如果,你使用的是一个远程的solrServer的话呢,你或许会这样来实现getSolrServer()这个方法:      
Java代码 复制代码  收藏代码
  1. public  SolrServer getSolrServer(){   
  2.      //the instance can be reused   
  3.      return   new  CommonsHttpSolrServer();   
  4. }  
[java] view plain copy
  1. public  SolrServer getSolrServer(){  
  2.     //the instance can be reused   
  3.     return   new  CommonsHttpSolrServer();  
  4. }  

 

  • 如果,你使用的是一个本地的solrServer的话,你或许会这样来实现getSolrServer()方法:      
Java代码 复制代码  收藏代码
  1. public  SolrServer getSolrServer(){   
  2.      //the instance can be reused   
  3.      return   new  EmbeddedSolrServer();   
  4. }  
[java] view plain copy
  1. public  SolrServer getSolrServer(){  
  2.     //the instance can be reused   
  3.     return   new  EmbeddedSolrServer();  
  4. }  

 

  • 如果,你在添加数据之前,想清空现有的索引,那么你可以这么做:

 

Java代码 复制代码  收藏代码
  1. server.deleteByQuery(  "*:*"  ); // delete everything!   
[java] view plain copy
  1. server.deleteByQuery(  "*:*"  ); // delete everything!   

 

  • 构造一个document

 

Java代码 复制代码  收藏代码
  1. SolrInputDocument doc1 =  new  SolrInputDocument();   
  2.  doc1.addField(  "id" "id1" 1 .0f );   
  3.  doc1.addField(  "name" "doc1" 1 .0f );   
  4.  doc1.addField(  "price" 10  );  
[java] view plain copy
  1. SolrInputDocument doc1 =  new  SolrInputDocument();  
  2.  doc1.addField( "id" "id1" 1 .0f );  
  3.  doc1.addField( "name" "doc1" 1 .0f );  
  4.  doc1.addField( "price" 10  );  

 

  • 构造另外一个文档,每个文档都能够被独自地提交给solr,但是,批量提交是更高效的。每一个对SolrServer的请求都是http请求,当然对于EmbeddedSolrServer来说,是不一样的。     
Java代码 复制代码  收藏代码
  1. SolrInputDocument doc2 =  new  SolrInputDocument();   
  2. doc2.addField(  "id" "id2" 1 .0f );   
  3. doc2.addField(  "name" "doc2" 1 .0f );   
  4. doc2.addField(  "price" 20  );  
[java] view plain copy
  1. SolrInputDocument doc2 =  new  SolrInputDocument();  
  2. doc2.addField( "id" "id2" 1 .0f );  
  3. doc2.addField( "name" "doc2" 1 .0f );  
  4. doc2.addField( "price" 20  );  

 

  • 构造一个文档的集合

 

Java代码 复制代码  收藏代码
  1. Collection<SolrInputDocument> docs =  new   ArrayList<SolrInputDocument>();   
  2.  docs.add( doc1 );   
  3.  docs.add( doc2 );  
[java] view plain copy
  1. Collection<SolrInputDocument> docs =  new   ArrayList<SolrInputDocument>();  
  2.  docs.add( doc1 );  
  3.  docs.add( doc2 );  

 

  • 将documents提交给solr
Java代码 复制代码  收藏代码
  1. server.add( docs );  
[java] view plain copy
  1. server.add( docs );  

 

  • 提交一个commit
Java代码 复制代码  收藏代码
  1. server.commit();  
[java] view plain copy
  1. server.commit();  
  • 在添加完documents后,立即做一个commit,你可以这样来写你的程序:
Java代码 复制代码  收藏代码
  1. UpdateRequest req =  new  UpdateRequest();    
  2.  req.setAction( UpdateRequest.ACTION.COMMIT,  false false  );   
  3. req.add( docs );   
  4.  UpdateResponse rsp = req.process( server );    
[java] view plain copy
  1. UpdateRequest req =  new  UpdateRequest();   
  2.  req.setAction( UpdateRequest.ACTION.COMMIT, false false  );  
  3. req.add( docs );  
  4.  UpdateResponse rsp = req.process( server );    

 

 

Streaming documents for an update

 

在很多的情况下,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 

Directly adding POJOs to Solr

  •    使用 java 注释创建java bean。@Field ,可以被用在域上,或者是setter方法上。如果一个域的名称跟bean的名称是不一样的,那么在java注释中填写别名,具体的,可以参照下面的域categories          
Java代码 复制代码  收藏代码
  1. import  org.apache.solr.client.solrj.beans.Field;   
  2.   
  3.   public   class  Item {   
  4.      @Field   
  5.     String id;   
  6.   
  7.      @Field ( "cat" )   
  8.     String[] categories;   
  9.   
  10.      @Field   
  11.     List<String> features;   
  12.   
  13.   }  
[java] view plain copy
  1. import  org.apache.solr.client.solrj.beans.Field;  
  2.   
  3.  public   class  Item {  
  4.     @Field   
  5.     String id;  
  6.   
  7.     @Field ( "cat" )  
  8.     String[] categories;  
  9.   
  10.     @Field   
  11.     List<String> features;  
  12.   
  13.   }  

 

  • java注释也可以使用在setter方法上,如下面的例子:

 

Java代码 复制代码  收藏代码
  1. @Field ( "cat" )   
  2.   public   void  setCategory(String[] c){   
  3.       this .categories = c;   
  4.  }  
[java] view plain copy
  1. @Field ( "cat" )  
  2.  public   void  setCategory(String[] c){  
  3.      this .categories = c;  
  4.  }  

          这里应该要有一个相对的,get方法(没有加java注释的)来读取属性

  • Get an instance of server
Java代码 复制代码  收藏代码
  1. SolrServer server = getSolrServer();  
[java] view plain copy
  1. SolrServer server = getSolrServer();  

 

  • 创建bean实例

 

Java代码 复制代码  收藏代码
  1. Item item =  new  Item();   
  2.  item.id =  "one" ;   
  3.  item.categories =   new  String[] {  "aaa" "bbb" "ccc"  };  
[java] view plain copy
  1. Item item =  new  Item();  
  2.  item.id = "one" ;  
  3.  item.categories =  new  String[] {  "aaa" "bbb" "ccc"  };  

 

  • 添加给solr          
Java代码 复制代码  收藏代码
  1. server.addBean(item);  
[java] view plain copy
  1. server.addBean(item);  

 

  • 将多个bean提交给solr

 

Java代码 复制代码  收藏代码
  1. List<Item> beans ;   
  2.   //add Item objects to the list   
  3.  server.addBeans(beans);     
[java] view plain copy
  1. List<Item> beans ;  
  2.  //add Item objects to the list   
  3.  server.addBeans(beans);     

    注意: 你可以重复使用SolrServer,这样可以提高性能。

  Reading Data from Solr

  •    获取solrserver的实例

 

Java代码 复制代码  收藏代码
  1. SolrServer server = getSolrServer();  
[java] view plain copy
  1. SolrServer server = getSolrServer();  

 

  •    构造 SolrQuery

 

Java代码 复制代码  收藏代码
  1. SolrQuery query =  new  SolrQuery();   
  2. query.setQuery(  "*:*"  );   
  3. query.addSortField(  "price" , SolrQuery.ORDER.asc );  
[java] view plain copy
  1. SolrQuery query =  new  SolrQuery();  
  2. query.setQuery( "*:*"  );  
  3. query.addSortField( "price" , SolrQuery.ORDER.asc );  

 

  •    向服务器发出查询请求

 

Java代码 复制代码  收藏代码
  1. QueryResponse rsp = server.query( query );     
[java] view plain copy
  1. QueryResponse rsp = server.query( query );     

 

  •    获取结果。

 

Java代码 复制代码  收藏代码
  1. SolrDocumentList docs = rsp.getResults();  
[java] view plain copy
  1. SolrDocumentList docs = rsp.getResults();  

 

  •    想要以javabean的方式获取结果,那么这个javabean必须像之前的例子一样有java注释。
    Java代码 复制代码  收藏代码
    1. List<Item> beans = rsp.getBeans(Item. class );  
    [java] view plain copy
    1. List<Item> beans = rsp.getBeans(Item. class );  
     

    高级用法

       solrJ 提供了一组API,来帮助我们创建查询,下面是一个faceted query的例子。

Java代码 复制代码  收藏代码
  1. SolrServer server = getSolrServer();   
  2.  SolrQuery solrQuery =  new   SolrQuery().   
  3.                setQuery( "ipod" ).   
  4.                setFacet( true ).   
  5.                setFacetMinCount( 1 ).   
  6.                setFacetLimit( 8 ).   
  7.                addFacetField( "category" ).   
  8.                addFacetField( "inStock" );     
  9.  QueryResponse rsp = server.query(solrQuery);  
[java] view plain copy
  1. SolrServer server = getSolrServer();  
  2.  SolrQuery solrQuery = new   SolrQuery().  
  3.                setQuery("ipod" ).  
  4.                setFacet(true ).  
  5.                setFacetMinCount(1 ).  
  6.                setFacetLimit(8 ).  
  7.                addFacetField("category" ).  
  8.                addFacetField("inStock" );    
  9.  QueryResponse rsp = server.query(solrQuery);  

 所有的 setter/add 方法都是返回它自己本身的实例,所以就像你所看到的一样,上面的用法是链式的。

分享到:
评论

相关推荐

    solrj使用教程

    这个“solrj使用教程”很可能是为了帮助开发者了解如何使用SolrJ来连接、查询和管理Solr索引。下面将详细介绍SolrJ的主要功能和使用方法。 **1. 安装和导入** 首先,你需要通过Maven或Gradle等构建工具将SolrJ库...

    非常全面的solrj使用案例

    里面有非常详细的说明交你怎么使用solrj客户端来操作solrAPI

    SolrJ使用示例

    简单的SolrJ使用示例,包括文件:News.java(PO对应的class),SolrService.java(对solrJ的包装),SolrServiceHook.java(在查询前修改SolrQuery的行为)

    solr配置和solrJ的使用

    ### Solr配置与SolrJ使用详解 #### 一、Solr基本安装与配置 **1. 下载Solr** - **步骤说明**: 从Apache官方镜像站点下载Solr 1.4.1版本。 - **操作详情**: 访问链接`http://apache.etoak.com/lucene/solr/`,...

    SolrJ需要的jar包

    6. `json-smart-*.jar`:SolrJ使用此库进行JSON序列化和反序列化,处理Solr服务器返回的JSON数据。 7. 可能还需要根据你的具体项目需求,包含如`jackson-core`, `jackson-databind`, `jackson-annotations`等...

    1.4、solrj的使用_代码开始1

    ### SolrJ 使用详解 #### 一、环境搭建与初始化 在正式介绍如何使用SolrJ之前,我们首先需要确保已经正确地搭建好开发环境。根据提供的内容,环境搭建主要包含以下几个步骤: 1. **创建Java工程**:首先,我们...

    solrj的使用

    doc.addField("title", "SolrJ使用教程"); solrServer.add(doc); solrServer.commit(); ``` 5. **执行查询** `SolrQuery`类用于构造查询语句,`SolrClient`的`query()`方法执行查询并返回一个`SolrResponse`...

    solr-config_solrj-demo.rar_DEMO_solr_solr的j

    总之,"solr-config_solrj-demo.rar_DEMO_solr_solr的j"这个DEMO是一个全面了解和实践Solr配置及SolrJ使用的宝贵资源,它将引导你逐步掌握如何在实际项目中有效地运用Solr进行全文检索和数据分析。通过深入学习和...

    solr详细配置教程与solrj的使用

    solr详细配置教程与solrj的使用

    solr-solrj-4.10.3.jar和solr-solrj-5.0.0.jar

    相反,如果项目需要利用Solr 5.x的新功能,或者已经升级到Solr 5.x,那么应使用5.0.0版本的SolrJ。 在实际开发中,SolrJ通过提供简单的Java接口,使得开发者可以方便地执行以下操作: 1. 创建和管理Solr核心...

    solr-solrj-6.1.0

    这个版本可能包含了该时期Solrj的所有特性和修复的bug,对于理解和使用当时的Solrj功能至关重要。 描述中提到,Solr是一个企业级搜索应用服务器,它通过HTTP服务接口提供XML格式的数据交换。这表明Solr设计为分布式...

    Java搜索服务Solr操作指南.pdf

    #### 3.1 SolrJ使用前配置 在Maven工程的pom.xml文件中添加SolrJ的依赖配置,以确保项目可以使用SolrJ提供的类和方法。 #### 3.2 添加文档 - 创建SolrServer对象,推荐使用HttpSolrServer类。 - 创建...

    Sample-SolrJ-Client:示例 SolrJ 客户端

    这个"Sample-SolrJ-Client"是一个示例项目,旨在帮助开发者了解如何有效地使用 SolrJ 进行索引、查询和其他操作。以下将详细阐述 SolrJ 的核心概念、功能及其在实际开发中的应用。 1. **SolrJ 简介** SolrJ 是 ...

    solr-solrj 5.0.0 demo

    在本文中,我们将深入探讨Solr-Solrj的使用、功能及其与自建Solr服务的集成,特别是涉及到中文分词的场景。 Apache Solr是一款流行的开源全文搜索引擎,提供高效的全文检索、文档分类、拼写建议等功能。Solr-Solrj...

    SolrJ6.3.0

    在使用 SolrJ 时,开发人员需要将这些库添加到项目的类路径中,以便能够调用 SolrJ 提供的各种类和方法。例如,可以通过 `SolrClient` 接口连接到 Solr 服务器,使用 `SolrInputDocument` 类来构建要索引的文档,...

    solrJ 需要的jar文件 (全)

    开发者可以使用SolrJ创建索引、查询Solr服务器、处理搜索结果以及执行其他Solr相关的任务。 - 使用SolrJ,开发者无需关心HTTP通信的细节,它封装了所有网络I/O,使得代码更简洁,更易于维护。 2. **JUnit-4.7.0**...

    java1.6源码-solrj.client:使用solr.solrjJava库将Java索引到Solr6.2.1的源代码

    SolrJ使用`SolrInputDocument`对象来表示待索引的文档。每个字段都由`Field`对象表示,如下所示: ```java SolrInputDocument doc = new SolrInputDocument(); doc.addField("id", "123"); doc.addField("title", ...

    solrj工具类封装

    solrj工具类封装,包括条件批量查询,批量增删改,分段修改。

Global site tag (gtag.js) - Google Analytics