什么是ElasticSearch?
ElasticSearch is a powerful open source search and analytics engine that makes data easy to explore.
可以简单理解成索引加检索的工具,当然它功能多于此。
ElasticSearch分为服务端与客户端,服务端提供REST API,客户端使用REST API。
windows下安装elasticsearch
首先需要JAVA运行环境,配置JAVA_HOME 环境变量
1.下载elasticsearch,解压
2.配置环境变量path,指向elasticsearch的bin
3.发布为service。打开dos窗口输入:service install [service-name]
启动elasticsearch:service -start [service-name]
停止elasticsearch:service -stop [service-name]
移除elasticsearch: service -remove [service-name]
4.在浏览器访问:http://localhost:9200,访问成功即安装成功
5.
安装head插件:在dos窗口输入:plugin install mobz/elasticsearch-head,测试 http://localhost:9200/_plugin/head
安装bigdesk插件:在dos窗口输入:plugin install lukas-vlcek/bigdesk,测试 http://localhost:9200/_plugin/bigdesk
Windows安装ElasticSearch-2.2.0
http://www.cnblogs.com/qiyebao/p/5253887.html
ElasticSearch NEST笔记
http://www.cnblogs.com/Angle-Louis/p/4218678.html
Elasticsearch学习笔记
http://www.cnblogs.com/javen_lin/p/4847513.html
Nest查询示例
http://www.cnblogs.com/thaughtZhao/p/5313078.html
ElasticSearch NEST
[官网的文档]
https://www.elastic.co/guide/en/elasticsearch/client/net-api/current/index.html
[博客]
https://www.elastic.co/blog/ga-release-of-nest-2-0-our-dot-net-client-for-elasticsearch
[客户端项目地址]
https://github.com/elastic/elasticsearch-net
[Lucene查询语法]
http://www.oschina.net/question/1092_560
网友评论