摘要: 概述 # # There is insufficient memory for the Java Runtime Environment to continue. # Native memory allocation (mmap) failed to map 12288 bytes for comm 阅读全文
posted @ 2023-09-13 15:04 float123 阅读(76) 评论(0) 推荐(0) 编辑
摘要: - [通俗解释](#通俗解释) - [理解参考 1](#理解参考-1) - [理解参考 2](#理解参考-2) - [例子](#例子) - [名词](#名词) - [Linux磁盘文件系统命名](#linux磁盘文件系统命名) - [type](#type) - [知识点](#知识点) - [1. 阅读全文
posted @ 2023-09-07 16:56 float123 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ## 概述 ### 几个重要的命令 1)fdisk -l :查看磁盘的分区情况 (详细) 2)lsblk:查看设备使用情况,即哪些磁盘的哪些分区正在被谁使用 (简单实用) 3)df:查看正在被系统挂载的设备 4) mount : 挂载命令 ,直接输入 `mount` 看到 6)blkid :查看设备 阅读全文
posted @ 2023-09-07 16:53 float123 阅读(85) 评论(0) 推荐(0) 编辑
摘要: ## 代理的动机 AT 模式下 - 执行 undo-log 回滚日志 代理的是 `DateSource` 这个类 ## 手动代理 即手动注入一个DataSourceProxy,如下 ````java @Bean public DataSource druidDataSource() { return 阅读全文
posted @ 2023-08-17 17:05 float123 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ## 概述 学习一个框架,我喜欢从demo中了解该框架所能达到的效果再进行深入地学习。本篇文章将会介绍 seata 的一个入门使用 demo ,作为使用 seata 的入门学习文章。 ## 使用案例 首先到github 中下载一个 RM 的运行服务,本例中使用的是 : https://github. 阅读全文
posted @ 2023-08-14 22:11 float123 阅读(112) 评论(0) 推荐(0) 编辑
摘要: > 部分图片和描述来自参考资料 ,非原创 ## 对象回收处理过程 ![img](https://img2023.cnblogs.com/blog/1297993/202307/1297993-20230706211659259-1236453870.png) ## 如何标定对象是否存活 两种方法 : 阅读全文
posted @ 2023-07-10 16:30 float123 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ![img](https://img2023.cnblogs.com/blog/1297993/202307/1297993-20230703001735859-1754577097.png) ![img](https://img2023.cnblogs.com/blog/1297993/20230 阅读全文
posted @ 2023-07-10 10:30 float123 阅读(9) 评论(0) 推荐(0) 编辑
摘要: > 转载自 : https://www.cnblogs.com/strinkbug/p/6376525.html 调用栈里的引用类型数据是GC的根集合(root set)的重要组成部分;找出栈上的引用是GC的根枚举(root enumeration)中不可或缺的一环。 JVM选择用什么方式会影响到G 阅读全文
posted @ 2023-07-06 22:16 float123 阅读(43) 评论(0) 推荐(0) 编辑
摘要: ## 背景 最近我们的登录系统在每个钟点的 18分就会登录不进去, 排查后发现有锁等待情况 , 周期地发生那么很大几率是自动任务了, 为了找到为什么会锁等待 ,我们做了以下的排查 ## 排查过程 ````SQL -- 1.锁住的事务 SELECT * FROM INFORMATION_SCHEMA. 阅读全文
posted @ 2023-07-05 11:05 float123 阅读(98) 评论(0) 推荐(0) 编辑
摘要: ## LinkedHashMap > A special constructor is provided to create a linked hash map whose order of iteration is the order in which its entries were last 阅读全文
posted @ 2023-06-27 21:00 float123 阅读(7) 评论(0) 推荐(0) 编辑