KKKPJSKEY

欢迎!

从OneNote搬运写的一些个人笔记,水平一般,能力有限,请多指教!
暂时仅维护中文,其它语言暂不开发,请不要切换语言!
如果您觉得我写的不错或者有懂其他语言的朋友想帮忙翻译。
请通过下面的图标链接联系我,我将不胜感激!

TransportClient访问ES笔记

索引 获取ES库下所有索引 tcp/ip 1 2 IndicesStatsResponse resp = client.admin().indices().prepareStats().execute().actionGet(); GetIndexResponse resp = client.admin().indices().prepareGetIndex().execute().actionGet(); http 1 2 GetMapping getMapping = new GetMapping.Builder().build(); JestResult results = jestclient.execute(getMapping); 判断索引是否存在 1 2 3 public boolean isIndexExist(String index) { return client.admin().indices().prepareExists(index).execute().actionGet().isExists(); } 删除索引 1 2 3 4 5 public boolean deleteIndex(String index) { return isIndexExist(index)

Cron表达式笔记

介绍 Cron表达式是一个字符串,字符串以5或6个空格隔开,分为6或7个域,每一个域代表一个含义,Cron有如下两种语法格式: (1) Seconds Minutes Hours DayofMonth Month

Sql笔记

Mysql行列转置 需求 我们想跑一个数据,格式如下图: 但是我们一般的mysql语句跑出来的数据却是下面这样,不但不方便查看,在数据量比较大的时