会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
荣神益人
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
15
下一页
2020年4月13日
Java知识点总结
摘要: 通过Collections.synchronizedList将一个线程不安全的列表转换为线程安全的列表
阅读全文
posted @ 2020-04-13 10:45 荣神益人
阅读(104)
评论(0)
推荐(0)
2020年4月9日
JdbcTemplate使用注意事项
摘要: queryForObject: 如果返回0条或多于1条记录会抛出异常 queryForList只能用于返回一个字段的列表,如果要返回多列的对象列表,可以调用比如:List<IdTime> list = app.jdbcTemplate.query(sql, new BeanPropertyRowMa
阅读全文
posted @ 2020-04-09 14:31 荣神益人
阅读(310)
评论(0)
推荐(0)
Eclipse安装从dao层直接到mapper层的插件
摘要: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/88120847
阅读全文
posted @ 2020-04-09 09:22 荣神益人
阅读(865)
评论(0)
推荐(0)
2020年4月8日
如何查看MySQL分区表信息?
摘要: select partition_name part,partition_expression expr,partition_description descr,table_rows from INFORMATION_SCHEMA.PARTITIONS where TABLE_SCHEMA=SCHE
阅读全文
posted @ 2020-04-08 14:42 荣神益人
阅读(4929)
评论(0)
推荐(0)
记一次MySQL分区表的创建
摘要: 有一张表,共3个字段,id(自增长,主键), reading_record_id, book_id,其中reading_record_id和book_id联合起来建了一个唯一索引,当用RANGE(reading_record_id)去建分区表时会报错,把id和reading_record_id建成联
阅读全文
posted @ 2020-04-08 13:18 荣神益人
阅读(243)
评论(0)
推荐(0)
安装笔记:在CentOS上安装pt-online-schema-change
摘要: yum -y install perl perl-DBI perl-DBD-MySQL perl-Time-HiRes perl-IO-Socket-SSL perl-Digest-MD5 到 https://www.percona.com/downloads/percona-toolkit/LAT
阅读全文
posted @ 2020-04-08 13:11 荣神益人
阅读(842)
评论(0)
推荐(0)
2020年4月3日
ElasticSearch中实现文档操作后立即被搜索到
摘要: ElasticSearch一般称为近实时的大数据处理引擎,为什么是近实时呢?原因是当我们提交索引数据时,实际上只是写到了Buffer里面,并不是立即可搜索的,最多需要等1秒才可搜索(index.refresh_interval由这个参数控制,可以通过动态API自定义设置,或在建索引时在setting
阅读全文
posted @ 2020-04-03 23:12 荣神益人
阅读(703)
评论(0)
推荐(0)
2020年4月1日
HAProxy:在不影响现有连接的情况下,重新加载配置
摘要: 比如: /usr/local/sbin/haproxy -f /etc/haproxy.cfg -sf
阅读全文
posted @ 2020-04-01 13:52 荣神益人
阅读(2167)
评论(0)
推荐(0)
2020年3月30日
Centos7升级python2到python3
摘要: https://www.cnblogs.com/aaron911/p/12125599.html Python下载地址从官网找最新版本的
阅读全文
posted @ 2020-03-30 21:02 荣神益人
阅读(153)
评论(0)
推荐(0)
通过yum在CentOS中安装jdk
摘要: 参考文章 yum list java-1.8* yum install java-1.8.0-openjdk -y
阅读全文
posted @ 2020-03-30 14:28 荣神益人
阅读(186)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
15
下一页
公告