上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 47 下一页

2023年10月9日

JavaSE---Comparable

摘要: 概述 This interface imposes a total ordering on the objects of each class that implements it. 实现Comparable接口的每个class都可以排序; This ordering is referred to 阅读全文

posted @ 2023-10-09 17:55 anpeiyong 阅读(2) 评论(0) 推荐(0) 编辑

MySQL---数据库备份与恢复

摘要: 物理备份与逻辑备份 逻辑备份/恢复 mysqldump实现逻辑备份 备份单个数据库 备份全部数据库 备份部分数据库 备份部分表 备份单表的部分数据 排除某些表的备份 只备份结构或只备份数据 备份中包含存储过程、函数、事件 MySQL命令恢复数据 单库备份恢复单库 全量备份恢复 从全量备份中恢复单库 阅读全文

posted @ 2023-10-09 11:27 anpeiyong 阅读(30) 评论(0) 推荐(0) 编辑

2023年10月7日

FastJson---JSONPath

摘要: 官方文档:https://github.com/alibaba/fastjson/wiki/JSONPath 阅读全文

posted @ 2023-10-07 15:18 anpeiyong 阅读(45) 评论(0) 推荐(0) 编辑

FastJson---TypeReference

摘要: 概述 Represents a generic type {@code T}. 代表泛型类型T Java doesn't yet provide a way to represent generic types, so this class does. Java未提供一种方式表示 泛型类型 Forc 阅读全文

posted @ 2023-10-07 15:06 anpeiyong 阅读(456) 评论(0) 推荐(0) 编辑

2023年8月31日

Guava---概述

摘要: 概述 官网:https://guava.dev/ User Guide:https://github.com/google/guava/wiki api文档:https://guava.dev/releases/snapshot-jre/api/docs/ Guava is a set of cor 阅读全文

posted @ 2023-08-31 10:46 anpeiyong 阅读(25) 评论(0) 推荐(0) 编辑

2023年8月18日

Linux---系统管理

摘要: https://www.runoob.com/linux/linux-command-manual.html https://blog.csdn.net/qq_23859799/article/details/115346773 ps 查找指定进程格式:ps -ef | grep 进程关键字 显示指 阅读全文

posted @ 2023-08-18 16:46 anpeiyong 阅读(3) 评论(0) 推荐(0) 编辑

2023年8月14日

Linux---磁盘

摘要: https://www.runoob.com/linux/linux-command-manual.html df du du -sh /path/to/directory 该命令将显示指定目录的磁盘空间使用情况,以人类可读的方式显示目录大小 阅读全文

posted @ 2023-08-14 17:18 anpeiyong 阅读(10) 评论(0) 推荐(0) 编辑

2023年7月26日

缓存一致性问题

摘要: 更新 先更新缓存,再更新数据库 存在的问题:如果缓存更新成功,但DB更新失败 -> DB回滚 && 缓存回滚 缓存中的数据为脏数据 先更新数据库,再更新缓存 存在的问题: 线程A 与 线程B 同时操作数据A: 线程A抢到CPU资源,更新DB =1; 线程B抢到CPU资源,更新DB=2 && 更新缓存 阅读全文

posted @ 2023-07-26 23:18 anpeiyong 阅读(9) 评论(0) 推荐(0) 编辑

ThreadPoolExecutor监控

摘要: http://ifeve.com/%e8%81%8a%e8%81%8a%e5%8a%a8%e6%80%81%e7%ba%bf%e7%a8%8b%e6%b1%a0%e7%9a%849%e4%b8%aa%e5%9c%ba%e6%99%af/ 阅读全文

posted @ 2023-07-26 17:01 anpeiyong 阅读(7) 评论(0) 推荐(0) 编辑

ThreadPoolExecutor---动态线程池+监控

摘要: 背景 实现 nacos + springboot nacos https://nacos.io/zh-cn/docs/quick-start.html 下载解压 unzip nacos-server-$version.zip 或者 tar -xvf nacos-server-$version.tar 阅读全文

posted @ 2023-07-26 17:00 anpeiyong 阅读(123) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 47 下一页

导航