搜索引擎
Elastic,Solr等搜索引擎的学习
风流三月1
公众号:Ygo工作室
微信号:pgy1607974129
简书:https://www.jianshu.com/u/60d75d1ea79d
Github:https://github.com/pgy1
工作室主页:https://www.ygoclub.com/index.html
寄语:
1、泰山崩于前,面不改色。
2、有朋自远方来,不亦乐乎?
展开
-
Elasticsearch6.3.0安装Ansj分词插件
elasticsearch-analysis-ik Github地址:https://github.com/NLPchina/elasticsearch-analysis-ansj分词方式 Analyzer: index_ansj,query_ansj下载编译方式 方式一,下载可用版本:下载地址 https://github.com/NLPchina/elasticse...原创 2018-07-02 10:27:49 · 2852 阅读 · 0 评论 -
Elasticsearch6.3.0安装IK分词插件
elasticsearch-analysis-ik 下载地址:https://github.com/medcl/elasticsearch-analysis-ik分词方式 Analyzer: ik_smart , ik_max_word Tokenizer: ik_smart , ik_max_word下载编译方式 方式一,下载可用版本:下载地址 https://g...原创 2018-06-29 17:38:22 · 1868 阅读 · 0 评论 -
Elasticsearch Exception:The number of object passed must be even but was [1]
Elasticsearch java批量导入的对象必须是map?List list = getWords();//包含bean的ListBulkResponse response;String Id = "";if(!list.isEmpty()) { Iterator iterator = list.iterator(); BulkRequestBuilder bu...原创 2019-06-21 11:25:12 · 7108 阅读 · 9 评论 -
Elasticsearch面向文档
在应用程序中对象很少只是一个简单的键和值的列表。通常,它们拥有更复杂的数据结构,可能包括日期、地理信息、其他对象或者数组等。也许有一天你想把这些对象存储在数据库中。使用关系型数据库的行和列存储,这相当于是把一个表现力丰富的对象挤压到一个非常大的电子表格中。Elasticsearch 是 面向文档 的,意味着它存储整个对象或 文档_。在 Elasticsearch 中,你 对文档进行索引、检...原创 2018-06-25 23:33:25 · 386 阅读 · 0 评论 -
Elasticsearch6.3.0环境安装
软件下载地址:https://www.elastic.co/downloadsElasticsearch安装 [选用的理由:安装快、使用简单。提供结构化搜索、同义词、全文搜索效率不随数据增长浮动很大] Run bin/elasticsearch (or bin\elasticsearch.bat on Windows) Elasticsearch的端口号9200 http://loca...原创 2018-06-25 11:11:03 · 429 阅读 · 0 评论 -
ElasticSearch的优点
Elasticsearch tries hard to hide the complexity of distributed systems. Here are some of the operations happening automatically under the hood【Elasticsearch 尽力隐藏了分布式系统的复杂性,这里尝试了很多方法在后台自动处理分布式的问题】: Pa...原创 2018-06-25 00:48:56 · 19213 阅读 · 0 评论 -
搜索引擎-Lucene
Lucene入门教程: http://blog.csdn.net/tianlincao/article/details/6867127/ Lucene教程: http://www.cnblogs.com/zhuxiaojie/p/5277219.html步骤: 1、索引创建 2、文本搜索注意: 1、lucene的索引不能太大,要不然效率会很低。大于1G的时候就必须考虑分布索引的问题 2原创 2017-10-13 15:41:54 · 915 阅读 · 0 评论