使用总结

.net Elasticsearch 学习入门笔记

混江龙づ霸主 提交于 2019-12-06 21:04:29
一. es安装相关 1.elasticsearch安装 运行http://localhost:9200/ 2.head插件 3.bigdesk插件安装 (安装细节百度:windows elasticsearch 安装,有详细内容) 二. es插件相关 http://www.searchtech.pro/elasticsearch-plugins (es 插件大全) https://github.com/medcl/elasticsearch-analysis-ik (ik 项目) https://github.com/lmenezes/elasticsearch-kopf (ES的插件 监控 节点状态 , 也可以调试你的ES查询) https://github.com/medcl/elasticsearch-rtf/tree/master (2.1.1 + 1.6ik 还有拼音 和其他分词器 集成好了) https://github.com/lmenezes/elasticsearch-kopf (类似head的插件) https://www.elastic.co/downloads/marvel (监控ES健康状态) konf插件 (据说能看集群负载) 三.es C# 客户端示例 1. 包下载elasticsearch.net,nest 组件。

Android Studio Git 使用总结

独自空忆成欢 提交于 2019-11-29 18:42:28
#本地项目上传到git服务器 ##配置环境 如图所示:在Setting下,搜索Git,在Path to Git executable设置Git的git.exe路径 ##测试Git是否配置成功 点击当前的Test按钮,弹出对话框 Git executed successfully以及Git 版本号说明配置成功 ##将项目变成git项目 依次点击VCS——Import into Version Control——Create Git Repository 在弹出的窗口中选择你的本地项目,操作完在项目目录下就有了.git文件夹 ##根据不同Git库(oschina,github)创建项目 1.在oschina或者github创建好自己的项目(由于不同网站有不同创建提示,不再赘述) 2.用git bush执行:git remote add origin <项目地址> 3.根据提示输入帐号以及密码 ##提交代码 用git bush执行:git push -u origin master 如果提交失败.请先执行git pull origin master在执行上面语句 (在服务器创建项目的时候.会生成一些本地库没有的文件,所以要先down下来然后在把本地项目push上去才行...) #从git服务器获取项目代码 1.依次点击VSC——Checkout from Version Control—