<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>搬运工</title>
    <link>http://water-melon.top</link>
    <description>大自然的搬运工</description>
    <managingEditor>792386472@qq.com (搬运工)</managingEditor>
    <item>
      <title>Go interface 的一个 “坑” 及原理分析</title>
      <link>http://water-melon.top/detail/22</link>
      <description>interface类型的变量与nil比较</description>
      <author>搬运工</author>
      <guid>22</guid>
      <pubDate>Thu, 12 Sep 2024 11:15:21 +0800</pubDate>
    </item>
    <item>
      <title>GMP 模型,为什么要有 P?</title>
      <link>http://water-melon.top/detail/21</link>
      <description>GMP 模型,为什么不是 G 和 M 直接绑定就完了,还要搞多一个 P 出来,那么麻烦,为的是什么,是要解决什么问题吗?</description>
      <author>搬运工</author>
      <guid>21</guid>
      <pubDate>Thu, 12 Sep 2024 11:10:19 +0800</pubDate>
    </item>
    <item>
      <title>Golang内存逃逸</title>
      <link>http://water-melon.top/detail/20</link>
      <description>内存逃逸是 Go 语言中一个重要的概念,涉及到程序的性能优化和内存管理,了解内存逃逸可以帮助我们编写更高效的代码,本文将从基本概念入手,深入讲解 Go 语言中的内存逃逸现象,以及如何避免,需要的朋友可以参考下</description>
      <author>搬运工</author>
      <guid>20</guid>
      <pubDate>Thu, 12 Sep 2024 10:52:33 +0800</pubDate>
    </item>
    <item>
      <title>select...for update 锁表了?</title>
      <link>http://water-melon.top/detail/19</link>
      <description>在MySQL中,事务A中使用select...for update where id=1锁住了,某一条数据,事务还没提交,此时,事务B中去用select ... where id=1查询那条数据,会阻塞等待吗?&#xA;select...for update在MySQL中,是一种悲观锁的用法,一般情况下,会锁住一行数据,但如果没有使用正确的话,也会把整张表锁住。</description>
      <author>搬运工</author>
      <guid>19</guid>
      <pubDate>Tue, 03 Sep 2024 19:11:02 +0800</pubDate>
    </item>
    <item>
      <title>秒杀系统如何设计?</title>
      <link>http://water-melon.top/detail/18</link>
      <description>https://cloud.tencent.com/developer/article/1863530</description>
      <author>搬运工</author>
      <guid>18</guid>
      <pubDate>Tue, 03 Sep 2024 16:55:49 +0800</pubDate>
    </item>
    <item>
      <title>Redis为什么用跳表而不用平衡树?</title>
      <link>http://water-melon.top/detail/17</link>
      <description>https://mp.weixin.qq.com/s?__biz=MzA4NTg1MjM0Mg==&amp;mid=2657261425&amp;idx=1&amp;sn=d840079ea35875a8c8e02d9b3e44cf95#rd</description>
      <author>搬运工</author>
      <guid>17</guid>
      <pubDate>Mon, 02 Sep 2024 17:10:16 +0800</pubDate>
    </item>
    <item>
      <title>TCI/IP 四层模型</title>
      <link>http://water-melon.top/detail/16</link>
      <description>TCI/IP 四层模型概述</description>
      <author>搬运工</author>
      <guid>16</guid>
      <pubDate>Mon, 02 Sep 2024 16:55:38 +0800</pubDate>
    </item>
    <item>
      <title>一致性哈希</title>
      <link>http://water-melon.top/detail/15</link>
      <description>在学到分布式负载均衡时,负载均衡的方式有很多种,其中一致性哈希与哈希的区别?</description>
      <author>搬运工</author>
      <guid>15</guid>
      <pubDate>Mon, 02 Sep 2024 15:52:03 +0800</pubDate>
    </item>
    <item>
      <title>负载均衡</title>
      <link>http://water-melon.top/detail/14</link>
      <description>分布式系统的负载均衡</description>
      <author>搬运工</author>
      <guid>14</guid>
      <pubDate>Mon, 02 Sep 2024 15:18:44 +0800</pubDate>
    </item>
    <item>
      <title>Linux虚拟地址空间布局</title>
      <link>http://water-melon.top/detail/13</link>
      <description>Linux虚拟地址空间布局,属于计算机基础知识</description>
      <author>搬运工</author>
      <guid>13</guid>
      <pubDate>Thu, 29 Aug 2024 16:56:02 +0800</pubDate>
    </item>
    <item>
      <title>IO多路复用 select、poll、epoll </title>
      <link>http://water-melon.top/detail/12</link>
      <description>以前曾写过轻量级perf,使用了poll底层库,在此整理下io多路复用相关的内容</description>
      <author>搬运工</author>
      <guid>12</guid>
      <pubDate>Thu, 29 Aug 2024 16:44:43 +0800</pubDate>
    </item>
    <item>
      <title>TCP三次握手四次挥手</title>
      <link>http://water-melon.top/detail/11</link>
      <description>【计网】闲下来整理下相关知识点</description>
      <author>搬运工</author>
      <guid>11</guid>
      <pubDate>Thu, 29 Aug 2024 15:16:14 +0800</pubDate>
    </item>
    <item>
      <title>go框架: gin-boilerplate</title>
      <link>http://water-melon.top/detail/10</link>
      <description>gin-boilerplate 是基于多个go工程,自己整合封装的一个go web框架,个人感觉使用比较方便</description>
      <author>搬运工</author>
      <guid>10</guid>
      <pubDate>Tue, 23 Jul 2024 14:25:26 +0800</pubDate>
    </item>
    <item>
      <title>手把手教你搭建VPN-Linux客户端</title>
      <link>http://water-melon.top/detail/9</link>
      <description>对于有界面的客户端,操作相对容易,那么如果Linux无界面呢</description>
      <author>搬运工</author>
      <guid>9</guid>
      <pubDate>Mon, 15 Jul 2024 16:33:13 +0800</pubDate>
    </item>
    <item>
      <title>手把手教你搭建VPN-界面客户端</title>
      <link>http://water-melon.top/detail/8</link>
      <description>介绍下client有哪些,并且只推荐正在用且好用的client给大家</description>
      <author>搬运工</author>
      <guid>8</guid>
      <pubDate>Mon, 15 Jul 2024 15:34:51 +0800</pubDate>
    </item>
    <item>
      <title>Docker 配置网络代理</title>
      <link>http://water-melon.top/detail/7</link>
      <description>有时因为网络原因,比如公司 NAT,或其它啥的,需要使用代理。Docker 的代理配置,略显复杂,因为有三种场景。但基本原理都是一致的,都是利用 Linux 的 http_proxy 等环境变量。</description>
      <author>搬运工</author>
      <guid>7</guid>
      <pubDate>Fri, 12 Jul 2024 16:01:01 +0800</pubDate>
    </item>
    <item>
      <title>手把手教你搭建VPN(仅限学习o)</title>
      <link>http://water-melon.top/detail/6</link>
      <description> 先免个责:本文是来教大家如何科学上网,查资料使用,仅限个人学习哈,严禁进行任何违法违规等行为。</description>
      <author>搬运工</author>
      <guid>6</guid>
      <pubDate>Wed, 10 Jul 2024 18:16:44 +0800</pubDate>
    </item>
    <item>
      <title>一款轻量级日志监控方案</title>
      <link>http://water-melon.top/detail/5</link>
      <description>这是自己写的一款小插件,用于日志收集,代码短小精干,实测性能还是不错的。</description>
      <author>搬运工</author>
      <guid>5</guid>
      <pubDate>Tue, 12 Mar 2024 23:30:47 +0800</pubDate>
    </item>
    <item>
      <title>Gitalk快速搭建博客评论系统</title>
      <link>http://water-melon.top/detail/4</link>
      <description>Gitalk可以集成在博客中,用作评论系统, 本文介绍如何来集成,以及过程中可能会踩哪些坑</description>
      <author>搬运工</author>
      <guid>4</guid>
      <pubDate>Wed, 01 Nov 2023 06:32:41 +0800</pubDate>
    </item>
    <item>
      <title>facebook CrypTen学习</title>
      <link>http://water-melon.top/detail/3</link>
      <description>facebook CrypTen学习</description>
      <author>搬运工</author>
      <guid>3</guid>
      <pubDate>Tue, 31 Oct 2023 05:35:27 +0800</pubDate>
    </item>
    <item>
      <title>brew使用方法</title>
      <link>http://water-melon.top/detail/2</link>
      <description>brew使用方法</description>
      <author>搬运工</author>
      <guid>2</guid>
      <pubDate>Tue, 31 Oct 2023 05:20:37 +0800</pubDate>
    </item>
    <item>
      <title>关于我</title>
      <link>http://water-melon.top/detail/1</link>
      <description>我的简介</description>
      <author>搬运工</author>
      <guid>1</guid>
      <pubDate>Tue, 17 Oct 2023 23:29:30 +0800</pubDate>
    </item>
  </channel>
</rss>