[elastic search][redis] 初试 ElasticSearch / redis

 

现有项目组,工作需要。

 

http://www.cnblogs.com/xing901022/p/4704319.html

 

Elastic Search权威指南(中文版)

https://es.xiaoleilu.com/010_Intro/00_README.html

https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html

https://github.com/elastic/elasticsearch

 

ElasticSearch是一个基于Apache Lucene(TM)的开源搜索引擎。无论在开源还是专有领域,Lucene可以被认为是迄今为止最先进、性能最好的、功能最全的搜索引擎库。

但是,Lucene只是一个库。想要使用它,你必须使用Java来作为开发语言并将其直接集成到你的应用中,更糟糕的是,Lucene非常复杂,你需要深入了解检索的相关知识来理解它是如何工作的。

Elasticsearch也使用Java开发并使用Lucene作为其核心来实现所有索引和搜索的功能,但是它的目的是通过简单的RESTful API来隐藏Lucene的复杂性,从而让全文搜索变得简单。

 

可以使用web方式访问ElasticSearch,利用head插件, 然后用浏览器访问http//localhost:9200/_plugin/head/

 

 

在CentOS6上安装 java8。

http://docs.oracle.com/javase/8/docs/technotes/guides/install/linux_jdk.html#BJFGGEFG

 

 

radis是key-value型内存数据库,与memcached类似。 memcached我也不懂。。。。

http://www.cnblogs.com/shanyou/archive/2012/01/28/2330451.html

https://github.com/antirez/redis

https://github.com/antirez/redis-doc

安装: https://redis.io/download

 

posted on 2017-05-19 20:04  toong  阅读(365)  评论(0编辑  收藏  举报