Apache solr tutorial入门(转载)

Apache solr tutorial入门

找得的一篇比较简单的solr入门教程。

博客分类:
  •  
  • solr+lucene
 

Apache solr tutorial

 

本节我们来学习apache solr,并且学习启动solr和检索,这个只能算是hello world教程,能让你在学习solr时,有个最为感性的认识。学习完本教程,你会感觉到信心大增,对于solr的最基础的配置和应用,应该算是入门了。

 

 

准备:

1:java:Oracle/openJDK/IBM ,版本好大于1.6

2:solr:Solr Release:http://lucene.apache.org/solr/downloads.html,官网上已经有最新版本的了,我们直接下载最新版本即可。现在网上的教程都是基于nightly版本,本文直接使用solr4.0版本作为示范

 

最后提示一点。我这个示范是在linux下面,其实并不仅限于linux,如果你在window平台上,只要有java环境,一样可以顺利启动。

 

 

installation:

 

java -jar start.jar  

 

 

控制台会打印出一大堆的日志,不过当你看到:

 

Multiple cores let you have a single Solr instance with separate configurations and indexes, with their own config and schema for very different applications, but still have the convenience of unified administration. Individual indexes are still fairly isolated, but you can manage them as a single application, create new indexes on the fly by spinning up new SolrCores, and even make one SolrCore replace another SolrCore without ever restarting your Servlet Container.  

 

一句话解释,方便管理、配置,关于solrCore的配置可以参考solr/solr.xml配置文件,这个是个比较高级的概念,是为分布式索引的关键,先了解下,当然在管理界面中也可以直接添加core,自己找下并且点几下自己添加个core,感受下这个功能。

 

相关推荐