<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>评论：redis源代码分析1–链表</title>
	<atom:link href="http://www.petermao.com/redis/65.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.petermao.com/redis/65.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=65</link>
	<description>欢迎探讨，共同进步</description>
	<lastBuildDate>Tue, 24 Mar 2026 07:36:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>由：ericuni</title>
		<link>http://www.petermao.com/redis/65.html#comment-23293</link>
		<dc:creator>ericuni</dc:creator>
		<pubDate>Tue, 26 Jul 2016 05:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-23293</guid>
		<description>估计是在多次插入的时候, 都是使用的同一个内存buffer</description>
		<content:encoded><![CDATA[<p>估计是在多次插入的时候, 都是使用的同一个内存buffer</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：redis源码分析1-链表 - 向东有岸</title>
		<link>http://www.petermao.com/redis/65.html#comment-23101</link>
		<dc:creator>redis源码分析1-链表 - 向东有岸</dc:creator>
		<pubDate>Wed, 17 Feb 2016 03:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-23101</guid>
		<description>[...] petermao的技术blog-redis源码分析系列：http://www.petermao.com/redis/65.html [...]</description>
		<content:encoded><![CDATA[<p>[...] petermao的技术blog-redis源码分析系列：http://www.petermao.com/redis/65.html [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：bear</title>
		<link>http://www.petermao.com/redis/65.html#comment-11792</link>
		<dc:creator>bear</dc:creator>
		<pubDate>Fri, 05 Jul 2013 14:21:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-11792</guid>
		<description>bucuo !</description>
		<content:encoded><![CDATA[<p>bucuo !</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：peter</title>
		<link>http://www.petermao.com/redis/65.html#comment-11670</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 24 Oct 2012 10:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-11670</guid>
		<description>redis的核心是单进程单线程，无须同步与复杂的加锁机制。关于hash表的设计，有点意思，有兴趣可以看看我的blog介绍。</description>
		<content:encoded><![CDATA[<p>redis的核心是单进程单线程，无须同步与复杂的加锁机制。关于hash表的设计，有点意思，有兴趣可以看看我的blog介绍。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：anon</title>
		<link>http://www.petermao.com/redis/65.html#comment-11669</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 18 Sep 2012 17:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-11669</guid>
		<description>redis是如何实现各种数据结构的原子操作呢 ？</description>
		<content:encoded><![CDATA[<p>redis是如何实现各种数据结构的原子操作呢 ？</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：petermao</title>
		<link>http://www.petermao.com/redis/65.html#comment-10996</link>
		<dc:creator>petermao</dc:creator>
		<pubDate>Tue, 28 Feb 2012 10:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-10996</guid>
		<description>把你的测试代码简化一下贴出来看看？？</description>
		<content:encoded><![CDATA[<p>把你的测试代码简化一下贴出来看看？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：测试List</title>
		<link>http://www.petermao.com/redis/65.html#comment-10082</link>
		<dc:creator>测试List</dc:creator>
		<pubDate>Sun, 19 Feb 2012 08:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.petermao.com/?p=13#comment-10082</guid>
		<description>大哥，你有没有测试这个链表，我进行了一下测试，但是出现了问题。
我插入数据后，进行递归输出数据的时候，都是同一个数据，且是最后一个插进去的数据。（插入的数据我是随机的，肯定各个不同）
我使用了 “迭代器和指针移动” 两种方法都不行。而且迭代器的方向也是没有起作用。
求解。。。。。</description>
		<content:encoded><![CDATA[<p>大哥，你有没有测试这个链表，我进行了一下测试，但是出现了问题。<br />
我插入数据后，进行递归输出数据的时候，都是同一个数据，且是最后一个插进去的数据。（插入的数据我是随机的，肯定各个不同）<br />
我使用了 “迭代器和指针移动” 两种方法都不行。而且迭代器的方向也是没有起作用。<br />
求解。。。。。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
