<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0"><channel><title>AcMachines-blog</title><link>http://localhost:8080</link><atom:link href="http://localhost:8080/rss.xml" rel="self" type="application/rss+xml"/><description>AcMachines-blog</description><generator>Halo v2.26.1</generator><language>zh-cn</language><image><url>http://localhost:8080/upload/111.jpg</url><title>AcMachines-blog</title><link>http://localhost:8080</link></image><lastBuildDate>Sun, 13 Sep 2026 04:28:58 GMT</lastBuildDate><item><title><![CDATA[JVM_调优]]></title><link>http://localhost:8080/archives/de4a21cf-15ab-4e06-b18c-59b138dce13f</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=JVM_%E8%B0%83%E4%BC%98&amp;url=/archives/de4a21cf-15ab-4e06-b18c-59b138dce13f" width="1" height="1" alt="" style="opacity:0;">JVM 调优 内存调优 1.解决什么问题：解决内存泄漏，define-不使用的对象仍然存在GC引用链上，无法被GC回收。 解决思路 1.发现问题，使用监控工具 2.定位问题，定位代码 3.修复 4.测试 常见场景 1.分布式任务调度系统如Elastic-job、 Quartz等进行任务调度时，被调度]]></description><guid isPermaLink="false">/archives/de4a21cf-15ab-4e06-b18c-59b138dce13f</guid><dc:creator>acmachines</dc:creator><category>默认分类</category><pubDate>Sat, 14 Sep 2024 11:51:13 GMT</pubDate></item><item><title><![CDATA[JVM - CMS GC]]></title><link>http://localhost:8080/archives/jvm---cms-gc</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=JVM%20-%20CMS%20GC&amp;url=/archives/jvm---cms-gc" width="1" height="1" alt="" style="opacity:0;">CMS JDK8默认GC为Parallel Scavenge（新生代）+ Parallel Old（老年代），CMS能和ParNew/Serial GC一起使用。 CMS 是 Concurrent Mark Sweep 的简称，中文翻译为并发标记清除，它的目标是减少垃圾回收时应用线程的停顿时间，并且]]></description><guid isPermaLink="false">/archives/jvm---cms-gc</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Sun, 21 Apr 2024 14:04:00 GMT</pubDate></item><item><title><![CDATA[JVM-G1 GC]]></title><link>http://localhost:8080/archives/jvm-n</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=JVM-G1%20GC&amp;url=/archives/jvm-n" width="1" height="1" alt="" style="opacity:0;">G1回收器 G1 是 Garbage First 的简称，可以翻译成“垃圾优先”，它是一款面向服务器的垃圾收集器，采用标记整理算法，用于大内存的多处理器计算机，目标是实现低延时垃圾回收，从 2017年9月发布的 JDK9 开始，G1 就已经成为了默认的垃圾收集器。 回收方式 年轻代回收 混合回收 G]]></description><guid isPermaLink="false">/archives/jvm-n</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Sat, 20 Apr 2024 07:05:00 GMT</pubDate></item><item><title><![CDATA[Mysql-Log]]></title><link>http://localhost:8080/archives/mysql-log</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=Mysql-Log&amp;url=/archives/mysql-log" width="1" height="1" alt="" style="opacity:0;">undo log 格式 操作表，记录了修改前的数据（逻辑操作）和版本链。具体的格式根据执行的语句不同而有些许变化，主要记录的具体的变化。比如插入的，记录的内容是插入记录的主键（指针），回滚时候就删除；更新为记录被更新的记录的指针，被更新的旧值，事务ID，会形成版本链；删除，被删除的记录的指针，被删除]]></description><guid isPermaLink="false">/archives/mysql-log</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Wed, 17 Apr 2024 14:09:00 GMT</pubDate></item><item><title><![CDATA[Redis的简单应用场景总结]]></title><link>http://localhost:8080/archives/b8929165-c750-4357-b3c6-cba8530721a4</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=Redis%E7%9A%84%E7%AE%80%E5%8D%95%E5%BA%94%E7%94%A8%E5%9C%BA%E6%99%AF%E6%80%BB%E7%BB%93&amp;url=/archives/b8929165-c750-4357-b3c6-cba8530721a4" width="1" height="1" alt="" style="opacity:0;">1. 缓存 比如我要从数据库查看最新的5000条评论： SELECT comments FROM user ORDER BY time DESC LIMIT 5000 这样的操作随着数据的增加会变得越来越慢，因为要进行排序操作。而且这种排序本身不应该发生：因为我们存的时候是按时间存进去的。 &lt;]]></description><guid isPermaLink="false">/archives/b8929165-c750-4357-b3c6-cba8530721a4</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Sun, 14 Apr 2024 15:42:00 GMT</pubDate></item><item><title><![CDATA[Redis基本面试题]]></title><link>http://localhost:8080/archives/fed4021d-d9e1-4d88-8ae0-4300cedf9a1e</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=Redis%E5%9F%BA%E6%9C%AC%E9%9D%A2%E8%AF%95%E9%A2%98&amp;url=/archives/fed4021d-d9e1-4d88-8ae0-4300cedf9a1e" width="1" height="1" alt="" style="opacity:0;">1.基础 1.1 什么是Redis？ Redis的全称是：Remote Dictionary Server，本质上是一个 Key-Value 类型的内存数据库。 整个数据库统统加载在内存当中进行操作，定期通过异步操作把数据库数据保存在硬盘。因为是纯内存操作，Redis 的性能非常出色。 1.2 Re]]></description><guid isPermaLink="false">/archives/fed4021d-d9e1-4d88-8ae0-4300cedf9a1e</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Fri, 12 Apr 2024 15:44:00 GMT</pubDate></item><item><title><![CDATA[OS面试题]]></title><link>http://localhost:8080/archives/d70dc8cf-92a5-4a1e-8c92-c852c9d30b1d</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=OS%E9%9D%A2%E8%AF%95%E9%A2%98&amp;url=/archives/d70dc8cf-92a5-4a1e-8c92-c852c9d30b1d" width="1" height="1" alt="" style="opacity:0;">1、进程、线程和协程的区别和联系 进程 线程 协程 定义 资源分配和拥有的基本单位 程序执行的基本单位 用户态的轻量级线程，线程内部调度的基本单位 切换情况 进程CPU环境(栈、寄存器、页表和文件句柄等)的保存以及新调度的进程CPU环境的设置 保存和设置程序计数器、少量寄存器和栈的内容 先将寄存器上]]></description><guid isPermaLink="false">/archives/d70dc8cf-92a5-4a1e-8c92-c852c9d30b1d</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Wed, 13 Mar 2024 02:30:00 GMT</pubDate></item><item><title><![CDATA[计算机网络面试题]]></title><link>http://localhost:8080/archives/314129be-e3e0-4476-aeae-cb44119ba293</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=%E8%AE%A1%E7%AE%97%E6%9C%BA%E7%BD%91%E7%BB%9C%E9%9D%A2%E8%AF%95%E9%A2%98&amp;url=/archives/314129be-e3e0-4476-aeae-cb44119ba293" width="1" height="1" alt="" style="opacity:0;">1、OSI 的七层模型分别是？各自的功能是什么？ 简要概括 物理层：底层数据传输，如网线；网卡标准。 数据链路层：定义数据的基本格式，如何传输，如何标识；如网卡MAC地址。 网络层：定义IP编址，定义路由功能；如不同设备的数据转发。 传输层：端到端传输数据的基本功能；如 TCP、UDP。 会话层：控]]></description><guid isPermaLink="false">/archives/314129be-e3e0-4476-aeae-cb44119ba293</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Mon, 26 Feb 2024 06:57:00 GMT</pubDate></item><item><title><![CDATA[MySQL笔记]]></title><link>http://localhost:8080/archives/47731fb5-d896-4047-a96f-2b8db4c9a74c</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=MySQL%E7%AC%94%E8%AE%B0&amp;url=/archives/47731fb5-d896-4047-a96f-2b8db4c9a74c" width="1" height="1" alt="" style="opacity:0;">逻辑架构图 引擎类型 特点 Myisan BDB Innodb Memory Archive 存储限制 没有 没有 64TB 有 没有 事务安全 支持 支持 锁机制（悲观锁）（乐观锁：版本号+时间戳） 表锁 行锁（共享]]></description><guid isPermaLink="false">/archives/47731fb5-d896-4047-a96f-2b8db4c9a74c</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Sat, 18 Nov 2023 10:08:00 GMT</pubDate></item><item><title><![CDATA[Verilog笔记]]></title><link>http://localhost:8080/archives/f8f8d771-6c5c-4947-a3a6-02e0048ec298</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=Verilog%E7%AC%94%E8%AE%B0&amp;url=/archives/f8f8d771-6c5c-4947-a3a6-02e0048ec298" width="1" height="1" alt="" style="opacity:0;">[TOC] 1.Verilog HDL语法 1.1基本概念 1.1.1基本格式 module 模块名（端口名1 端口名2 端口名3 ...）; 端口类型说明（input，output,inout）; 参数定义（可选）; 数据类型定义（wire，reg等）; 实例化底层]]></description><guid isPermaLink="false">/archives/f8f8d771-6c5c-4947-a3a6-02e0048ec298</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Wed, 15 Nov 2023 13:17:00 GMT</pubDate></item><item><title><![CDATA[408-OS-总结]]></title><link>http://localhost:8080/archives/f43513f1-df73-4dfb-b768-713fd55ac8d3</link><description><![CDATA[<img src="http://localhost:8080/plugins/feed/assets/telemetry.gif?title=408-OS-%E6%80%BB%E7%BB%93&amp;url=/archives/f43513f1-df73-4dfb-b768-713fd55ac8d3" width="1" height="1" alt="" style="opacity:0;">操作系统小总结 目录 第一章 计算机系统概述 1.1操作系统 第二章 进程管理 2.1进程和线程 2.2调度 2.3互斥同步 2.4死锁 第三章 内存管理 3.1内存管理概念 3.2虚拟内存管理 第四章 文件管理 4.1文件管理 4.2磁盘管理 第五章 输入输出管理(IO) 5.1输入输出管理(IO]]></description><guid isPermaLink="false">/archives/f43513f1-df73-4dfb-b768-713fd55ac8d3</guid><dc:creator>acmachines</dc:creator><category>笔记</category><pubDate>Thu, 15 Sep 2022 07:49:00 GMT</pubDate></item></channel></rss>