上一页 1 2 3 4 5 6 7 8 9 ··· 35 下一页
摘要: 修改 ~/.bashrc, 增加历史行数 HISTSIZE=5000 HISTCONTROL=ignorespaceignoredups 默认,忽略重复命令ignorespace 忽略所有以空格开头的命令ignoreboth ignoredups 和 ignorespace 的组合erasedups 阅读全文
posted @ 2023-04-12 10:05 翠微 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1、从有网络的机器上下载rpm包 2、同时安装相互依赖的 rpm 包 比较全面但是下载速度有点慢http://rpm.pbone.net/速度还可以就是没有上面的全http://www.rpmfind.net/linux/rpm2html/search.phpCentOS7 rpm包下载地址http 阅读全文
posted @ 2023-04-11 09:33 翠微 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】数据类型 阅读全文
posted @ 2023-04-03 21:44 翠微 阅读(17) 评论(0) 推荐(0) 编辑
摘要: <select id="checkTableExists" resultType="java.util.Map"> select count(*) as cnt from information_schema.tables where table_schema = database() and `t 阅读全文
posted @ 2023-03-10 16:28 翠微 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://www.likecs.com/show-307003828.html 基于公钥和私钥的信任办法 使用 root 用户,在 192.168.0.30 和 192.168.0.31 之间复制文件 可以先删除旧文件 rm /root/.ssh/* 两台机器都执行下面的命令,全部yes和回车 阅读全文
posted @ 2023-03-01 18:30 翠微 阅读(236) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cndarren/p/15982972.html 由于是spring-web-5.2.15.RELEASE版本中出现了此问题,查看了Spring官网的版本信息,发现在spring-web-5.2.16.RELEASE版本中,针对此问题进行了修复 <de 阅读全文
posted @ 2023-02-27 13:54 翠微 阅读(234) 评论(0) 推荐(0) 编辑
摘要: window系统 #include <windows.h> #include <winsock.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #include <string.h 阅读全文
posted @ 2023-02-18 10:50 翠微 阅读(15) 评论(0) 推荐(0) 编辑
摘要: printf转换说明 %a,%A 浮点数,十六进制数和p计数法 %c 单个字符 %d 十进制数 %e,%E 浮点数,e记数法 %f 浮点数,十进制记数法 %g,%G 根据值自动选择%f或%e。%e格式用指数小于-4或者大于或者等于精度时 %i 有符号十进制数 %o(小写字母o) 无符号八进制数 %p 阅读全文
posted @ 2023-02-14 20:23 翠微 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 数据类型 类型 C JAVA int 4字节32位,%d。和平台有关系占用一个机器字长,16位机器是16位,32位机器是32位,64位机器是64位。 4字节32位,范围-2 147 483 648~2 147 483 647 超21亿有10位数。前缀0x或0X十六进制0xccff,前缀0八进制010 阅读全文
posted @ 2023-02-06 20:45 翠微 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】聚合Aggregation 关于text类型默认是禁止聚合/排序操作的,通过 fielddata=true 开启 PUT cms_search_inside_0d1a60ff-654d-4c1d-9d92-795ff0f9/_mapping { "properties" 阅读全文
posted @ 2023-01-06 09:55 翠微 阅读(77) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 35 下一页