上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 50 下一页
  2022年6月10日
摘要: #创建索引songs_v1 PUT { - "acknowledged": true, "shards_acknowledged": true, "index": "songs_v1"} #创建映射 高版本的没有type,可以使用默认的_doc,避免不同的type之间存在相同的字段名,但是字段类型不 阅读全文
posted @ 2022-06-10 08:54 oktokeep 阅读(100) 评论(0) 推荐(0) 编辑
摘要: [root@VM-4-3-centos local]# ps aux --sort -rss | head USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND mysql 21247 0.0 9.6 1191444 182252 ? Sl 1 阅读全文
posted @ 2022-06-10 08:47 oktokeep 阅读(167) 评论(1) 推荐(0) 编辑
摘要: -bash: curl: command not found rpm -e --nodeps curl yum remove curl rpm -qa|grep curl yum -y install curl curl --version 阅读全文
posted @ 2022-06-10 08:41 oktokeep 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: 1.下载,上传安装包,解压缩tar -zxvf kibana-8.2.0-linux-x86_64.tar.gz cd kibana-8.2.0 2.修改配置文件vi config/kibana.ymlserver.host: "127.0.0.1" #本机ipelasticsearch.url: 阅读全文
posted @ 2022-06-10 08:36 oktokeep 阅读(396) 评论(1) 推荐(0) 编辑
摘要: 1.导入pom jar文件 <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> <version>8.11.1</version> </dependency> <dependen 阅读全文
posted @ 2022-06-10 08:23 oktokeep 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1.Nexus官网:https://www.sonatype.com/download-oss-sonatype 2.环境变量NEXUS_HOME = D:\nexus-3.20.1-01-win64\nexus-3.20.1-01path = %NEXUS_HOME%\bin 3.修改配置文件-X 阅读全文
posted @ 2022-06-10 08:17 oktokeep 阅读(987) 评论(0) 推荐(0) 编辑
  2022年6月9日
摘要: Java对象转Map<String,String> import org.springframework.beans.BeanUtils; import org.springframework.util.ReflectionUtils; private static Map<String, Stri 阅读全文
posted @ 2022-06-09 17:05 oktokeep 阅读(1396) 评论(0) 推荐(0) 编辑
  2022年6月4日
摘要: 1.CacheService.java package com.redis.demo; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONO 阅读全文
posted @ 2022-06-04 11:44 oktokeep 阅读(30) 评论(2) 推荐(0) 编辑
摘要: 1.创建项目 如果出现init失败(需要等待网络可以正常连接) 或者运行主类的时候报错(错误: 找不到或无法加载主类),需要重新导入maven项目再重新编译试试。 2.引入pom jar <?xml version="1.0" encoding="UTF-8"?> <project xmlns="h 阅读全文
posted @ 2022-06-04 10:48 oktokeep 阅读(154) 评论(0) 推荐(0) 编辑
摘要: redis简单应用demo1.字符串127.0.0.1:6379> set hello toneyOK127.0.0.1:6379> type hellostring127.0.0.1:6379> get hello"toney" 2.Hash哈希表HashMap<key,HashMap<>>127 阅读全文
posted @ 2022-06-04 09:35 oktokeep 阅读(90) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 50 下一页