<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tim[后端技术] &#187; qconbeijing</title>
	<atom:link href="http://timyang.net/tag/qconbeijing/feed/" rel="self" type="application/rss+xml" />
	<link>http://timyang.net</link>
	<description>Tim&#039;s blog, 关于后端架构、互联网技术、分布式、大型网络应用、NoSQL、Key Value等</description>
	<lastBuildDate>Mon, 26 Jul 2010 15:32:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>构建可扩展的微博架构(qcon beijing 2010演讲)</title>
		<link>http://timyang.net/architecture/microblog-design-qcon-beijing/</link>
		<comments>http://timyang.net/architecture/microblog-design-qcon-beijing/#comments</comments>
		<pubDate>Tue, 11 May 2010 02:00:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[架构]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[qcon]]></category>
		<category><![CDATA[qconbeijing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://timyang.net/?p=600</guid>
		<description><![CDATA[在使用Twitter几年的时间里面，经常思考微博如何更好的实现，恰好最近几个月也参与了相关工作，大部分都是工程实践，总结实践会促生更具实际价值的理论。因此在QCon Beijing 2010这次演讲参考了不少网友的意见后选择了《构建可扩展微博架构》的题目。
由于在决定选题时知道来自Twitter总部有30万followers的@nk也会讲一个类似的题目，心中当时有点忐忑，最大的顾虑就是要讲的领域更他重叠，如果他讲得更深入，我就没必要班门弄斧了。后来考虑到以下几个原因还是决定继续

Twitter架构是单IDC设计，从它递增的tweet id就可以看出，后来当面向@nk提问也得到了证实。
中美网络环境差异，单IDC和多IDC有很多设计上的不同
大部分参会人员未必能对英文演讲有深入理解及感悟，中文的演讲可以讲一些细节解释更透彻。
Twitter对故障的容忍度大，国内公司对服务故障通常更敏感。因此国内架构师会考虑设计方案尽量简单可靠，服务需要更稳定。国外开发团队更倾向追求在工作中应用技术创新，因此会导致架构设计理念的不少差异。

演讲的slide如下，登录slideshare之后可以下载。
Build scalable microblog qcon beijing 2010
View more presentations from Tim Y.

这里再补充在qcon演讲未来得及考虑成熟的一个方面，用户规模影响设计，具体是指用户数每上一个数量级，许多设计需要重新考虑。
10万用户级别

 单服务器，前端、后端、cache、db在一起。

百万级

 db和cache单独部署服务器，db或按业务进行拆分(sharding)
 cache或使用一致性hash扩展。
 前端后端还是在一起，但是根据业务拆分，每个业务可分配不同数量的服务器

 千万级

 开始重视架构设计，有专门技术架构师
 需跨机房部署，前端在远程增加反向代理加速，数据库在异地机房使用slave数据库副本
 后端拆分出来，系统内部需要远程调用，内部需远程调用协议。

亿级

 架构更细分，或增加数据架构师，cache架构师，分布式架构师
 数据库sharding碰到烦恼，开始考虑分布式数据服务
 数据访问需要根据业务特点细分。
 开发、运维、测量、调优具备有自己的专有工具。
 所有服务需要地理多机房分布，具备IDC容灾设计。
 服务可降级

上面的数字仅供理解“用户规模影响设计”，数字本身并无具体指导价值。
另外在slide中也提到了，目前新浪微博团队急需人才，对上面相关技术领域感兴趣的架构师及各层次开发人员(熟悉PHP，Java, C或数据架构任意一种)可随时跟我联系，工作地点为北京，联系方式见博客首页。
Similar Posts:Twitter架构图(cache篇)

QCon Beijing qconbeijing全部演讲资料下载

Twitter停用Cassandra原因分析

Web 2.0技术沙龙设想

陈杰谈网游服务器的后端技术
]]></description>
			<content:encoded><![CDATA[<p>在使用Twitter几年的时间里面，经常思考微博如何更好的实现，恰好最近几个月也参与了相关工作，大部分都是工程实践，总结实践会促生更具实际价值的理论。因此在QCon Beijing 2010这次演讲参考了不少网友的意见后选择了《构建可扩展微博架构》的题目。<br />
由于在决定选题时知道来自Twitter总部有30万followers的@<a href="http://twitter.com/nk">nk</a>也会讲一个类似的题目，心中当时有点忐忑，最大的顾虑就是要讲的领域更他重叠，如果他讲得更深入，我就没必要班门弄斧了。后来考虑到以下几个原因还是决定继续</p>
<ul>
<li>Twitter架构是单IDC设计，从它递增的tweet id就可以看出，后来当面向@nk提问也得到了证实。</li>
<li>中美网络环境差异，单IDC和多IDC有很多设计上的不同</li>
<li>大部分参会人员未必能对英文演讲有深入理解及感悟，中文的演讲可以讲一些细节解释更透彻。</li>
<li>Twitter对故障的容忍度大，国内公司对服务故障通常更敏感。因此国内架构师会考虑设计方案尽量简单可靠，服务需要更稳定。国外开发团队更倾向追求在工作中应用技术创新，因此会导致架构设计理念的不少差异。</li>
</ul>
<p>演讲的slide如下，登录slideshare之后可以下载。</p>
<div id="__ss_3973160" style="width: 425px;"><strong style="display: block; margin: 12px 0 4px;"><a title="Build scalable microblog qcon beijing 2010" href="http://www.slideshare.net/iso1600/build-scalable-microblog-qcon-beijing-2010">Build scalable microblog qcon beijing 2010</a></strong><object id="__sse3973160" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=buildscalablemicroblogqconbeijing2010-100505020917-phpapp01&amp;stripped_title=build-scalable-microblog-qcon-beijing-2010" /><param name="name" value="__sse3973160" /><param name="allowfullscreen" value="true" /><embed id="__sse3973160" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=buildscalablemicroblogqconbeijing2010-100505020917-phpapp01&amp;stripped_title=build-scalable-microblog-qcon-beijing-2010" name="__sse3973160" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/iso1600">Tim Y</a>.</div>
</div>
<p>这里再补充在qcon演讲未来得及考虑成熟的一个方面，用户规模影响设计，具体是指用户数每上一个数量级，许多设计需要重新考虑。</p>
<p><strong>10万用户级别</strong></p>
<ul>
<li> 单服务器，前端、后端、cache、db在一起。</li>
</ul>
<p><strong>百万级</strong></p>
<ul>
<li> db和cache单独部署服务器，db或按业务进行拆分(sharding)</li>
<li> cache或使用一致性hash扩展。</li>
<li> 前端后端还是在一起，但是根据业务拆分，每个业务可分配不同数量的服务器</li>
</ul>
<p><strong> 千万级</strong></p>
<ul>
<li> 开始重视架构设计，有专门技术架构师</li>
<li> 需跨机房部署，前端在远程增加反向代理加速，数据库在异地机房使用slave数据库副本</li>
<li> 后端拆分出来，系统内部需要远程调用，内部需远程调用协议。</li>
</ul>
<p><strong>亿级</strong></p>
<ul>
<li> 架构更细分，或增加数据架构师，cache架构师，分布式架构师</li>
<li> 数据库sharding碰到烦恼，开始考虑分布式数据服务</li>
<li> 数据访问需要根据业务特点细分。</li>
<li> 开发、运维、测量、调优具备有自己的专有工具。</li>
<li> 所有服务需要地理多机房分布，具备IDC容灾设计。</li>
<li> 服务可降级</li>
</ul>
<p>上面的数字仅供理解“用户规模影响设计”，数字本身并无具体指导价值。</p>
<p>另外在slide中也提到了，目前新浪微博团队急需人才，对上面相关技术领域感兴趣的架构师及各层次开发人员(熟悉PHP，Java, C或数据架构任意一种)可随时跟我联系，工作地点为北京，联系方式见博客首页。</p>
Similar Posts:<ul><li><a href="http://timyang.net/architecture/twitter-cache-architecture/" rel="bookmark" title="October 28, 2009">Twitter架构图(cache篇)</a></li>

<li><a href="http://timyang.net/architecture/qcon-beijing-ppt-pdf-slide/" rel="bookmark" title="May 7, 2009">QCon Beijing qconbeijing全部演讲资料下载</a></li>

<li><a href="http://timyang.net/data/twitter-cassandra/" rel="bookmark" title="July 12, 2010">Twitter停用Cassandra原因分析</a></li>

<li><a href="http://timyang.net/sns/web20-forum/" rel="bookmark" title="June 6, 2010">Web 2.0技术沙龙设想</a></li>

<li><a href="http://timyang.net/architecture/game-backend/" rel="bookmark" title="December 25, 2008">陈杰谈网游服务器的后端技术</a></li>
</ul><!-- Similar Posts took 10.049 ms -->]]></content:encoded>
			<wfw:commentRss>http://timyang.net/architecture/microblog-design-qcon-beijing/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>QCon Beijing qconbeijing全部演讲资料下载</title>
		<link>http://timyang.net/architecture/qcon-beijing-ppt-pdf-slide/</link>
		<comments>http://timyang.net/architecture/qcon-beijing-ppt-pdf-slide/#comments</comments>
		<pubDate>Thu, 07 May 2009 05:49:58 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[架构]]></category>
		<category><![CDATA[qcon]]></category>
		<category><![CDATA[qconbeijing]]></category>

		<guid isPermaLink="false">http://timyang.net/?p=136</guid>
		<description><![CDATA[QCon Beijing 2009 qconbeijing slide download
QCon全球企业开发大会（QCon Enterprise Software Development Conference）2009
QCon 2009北京大会全部演讲资料下载 (包含pdf, ppt 等格式slide)
永久链接：http://timyang.net/?p=136
Update 2010/03/01: 目前Dropbox已经被封，请自行想办法解决。(点这里可申请Dropbox账号)
Update 2010/05/11: 注意本文是2009年的演讲稿，QCon beijing 2010 的演讲稿官方尚未全部公布，部分下载见这里 http://www.cnblogs.com/coderzh/archive/2010/04/28/qcon-beijing-2010-ppt-slideshare.html
http://dl.getdropbox.com/u/1080311/suncaoxipingqconbeijing-090423084840-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/augmentumshaorongqconbeijing-090423085848-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/vmwareliyanbingqconbeijing-090423084914-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/ebayrandyqconbeijing-090423080359-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/pmlvjianweiqconbeijing-090423081337-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/uelvweideqconbeijing-090423091515-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/alipaychengliqconbeijing-090423080430-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/sprinthenrikqconbeijing-090423081310-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/openwebdylanqconbeijing-090423091545-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/youkuqiudanqconbeijing-090423080809-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/azurewuyananqconbeijing-090423084537-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/outsoftingqconbeijing-090423081254-phpapp02.ppt 
http://dl.getdropbox.com/u/1080311/qcon2009intro-090412122012-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/youdaodengyiqconbeijing-090423072448-phpapp02.ppt 
http://dl.getdropbox.com/u/1080311/freewheeldianeqconbeijing-090423080513-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/reusearchpanjiayuqconbeijing-090423083708-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/collabortivecommercevisionwangqconbeijing-090423084739-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/tddmaitianzhiqconbeijing-090423083637-phpapp01.ppt 
http://dl.getdropbox.com/u/1080311/QCon_Summary_Chinese.pdf 
http://dl.getdropbox.com/u/1080311/flexmajianqconbeijing-090423090123-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/geowebmoxiezhangqconbeijing-090423090510-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/enterprisejavamaoxinshengqconbeijing-090423085404-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/doubanhongqiangningqconbeijing-090423080457-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/taobaoyuexuqiangqconbeijing-090423085411-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/aboutarchzhouaiminqconbeijing-090423080807-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/archqualitygaohuantangqconbeijing-090423080658-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/newinfoqchinaintro-090412122754-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/siemensliweiqconbeijing-090423080616-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/amazonjeffbarqconbeijing-090423083948-phpapp01.pdf 
http://dl.getdropbox.com/u/1080311/ppwithagileyannhamonqconbeijing-090423081417-phpapp02.pdf 
http://dl.getdropbox.com/u/1080311/jrubyluogudaoqconbeijing-090423085418-phpapp01.pdf 

Similar Posts:第一期广州技术沙龙预告

构建可扩展的微博架构(qcon beijing [...]]]></description>
			<content:encoded><![CDATA[<p>QCon Beijing 2009 qconbeijing slide download</p>
<p><em>QCon</em>全球企业开发大会（<em>QCon</em> Enterprise Software Development Conference）2009</p>
<p>QCon 2009北京大会全部演讲资料下载 (包含pdf, ppt 等格式slide)</p>
<p>永久链接：<a href="http://timyang.net/?p=136">http://timyang.net/?p=136</a></p>
<p><strong>Update 2010/03/01: 目前Dropbox已经被封，请自行想办法解决。(点这里可<a href="https://www.dropbox.com/referrals/NTcyMTYwNjk">申请Dropbox账号</a>)</strong><br />
<strong>Update 2010/05/11: 注意本文是2009年的演讲稿，QCon beijing 2010 的演讲稿官方尚未全部公布，部分下载见这里 <a href="http://www.cnblogs.com/coderzh/archive/2010/04/28/qcon-beijing-2010-ppt-slideshare.html">http://www.cnblogs.com/coderzh/archive/2010/04/28/qcon-beijing-2010-ppt-slideshare.html</a></strong></p>
<pre><a href="http://dl.getdropbox.com/u/1080311/suncaoxipingqconbeijing-090423084840-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/suncaoxipingqconbeijing-090423084840-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/augmentumshaorongqconbeijing-090423085848-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/augmentumshaorongqconbeijing-090423085848-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/vmwareliyanbingqconbeijing-090423084914-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/vmwareliyanbingqconbeijing-090423084914-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/ebayrandyqconbeijing-090423080359-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/ebayrandyqconbeijing-090423080359-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/pmlvjianweiqconbeijing-090423081337-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/pmlvjianweiqconbeijing-090423081337-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/uelvweideqconbeijing-090423091515-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/uelvweideqconbeijing-090423091515-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/alipaychengliqconbeijing-090423080430-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/alipaychengliqconbeijing-090423080430-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/sprinthenrikqconbeijing-090423081310-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/sprinthenrikqconbeijing-090423081310-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/openwebdylanqconbeijing-090423091545-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/openwebdylanqconbeijing-090423091545-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/youkuqiudanqconbeijing-090423080809-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/youkuqiudanqconbeijing-090423080809-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/azurewuyananqconbeijing-090423084537-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/azurewuyananqconbeijing-090423084537-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/outsoftingqconbeijing-090423081254-phpapp02.ppt">http://dl.getdropbox.com/u/1080311/outsoftingqconbeijing-090423081254-phpapp02.ppt </a>
<a href="http://dl.getdropbox.com/u/1080311/qcon2009intro-090412122012-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/qcon2009intro-090412122012-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/youdaodengyiqconbeijing-090423072448-phpapp02.ppt">http://dl.getdropbox.com/u/1080311/youdaodengyiqconbeijing-090423072448-phpapp02.ppt </a>
<a href="http://dl.getdropbox.com/u/1080311/freewheeldianeqconbeijing-090423080513-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/freewheeldianeqconbeijing-090423080513-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/reusearchpanjiayuqconbeijing-090423083708-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/reusearchpanjiayuqconbeijing-090423083708-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/collabortivecommercevisionwangqconbeijing-090423084739-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/collabortivecommercevisionwangqconbeijing-090423084739-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/tddmaitianzhiqconbeijing-090423083637-phpapp01.ppt">http://dl.getdropbox.com/u/1080311/tddmaitianzhiqconbeijing-090423083637-phpapp01.ppt </a>
<a href="http://dl.getdropbox.com/u/1080311/QCon_Summary_Chinese.pdf">http://dl.getdropbox.com/u/1080311/QCon_Summary_Chinese.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/flexmajianqconbeijing-090423090123-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/flexmajianqconbeijing-090423090123-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/geowebmoxiezhangqconbeijing-090423090510-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/geowebmoxiezhangqconbeijing-090423090510-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/enterprisejavamaoxinshengqconbeijing-090423085404-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/enterprisejavamaoxinshengqconbeijing-090423085404-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/doubanhongqiangningqconbeijing-090423080457-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/doubanhongqiangningqconbeijing-090423080457-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/taobaoyuexuqiangqconbeijing-090423085411-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/taobaoyuexuqiangqconbeijing-090423085411-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/aboutarchzhouaiminqconbeijing-090423080807-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/aboutarchzhouaiminqconbeijing-090423080807-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/archqualitygaohuantangqconbeijing-090423080658-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/archqualitygaohuantangqconbeijing-090423080658-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/newinfoqchinaintro-090412122754-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/newinfoqchinaintro-090412122754-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/siemensliweiqconbeijing-090423080616-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/siemensliweiqconbeijing-090423080616-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/amazonjeffbarqconbeijing-090423083948-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/amazonjeffbarqconbeijing-090423083948-phpapp01.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/ppwithagileyannhamonqconbeijing-090423081417-phpapp02.pdf">http://dl.getdropbox.com/u/1080311/ppwithagileyannhamonqconbeijing-090423081417-phpapp02.pdf </a>
<a href="http://dl.getdropbox.com/u/1080311/jrubyluogudaoqconbeijing-090423085418-phpapp01.pdf">http://dl.getdropbox.com/u/1080311/jrubyluogudaoqconbeijing-090423085418-phpapp01.pdf </a>
</pre>
Similar Posts:<ul><li><a href="http://timyang.net/tech/guangzhou-salon-guid/" rel="bookmark" title="August 3, 2009">第一期广州技术沙龙预告</a></li>

<li><a href="http://timyang.net/architecture/microblog-design-qcon-beijing/" rel="bookmark" title="May 11, 2010">构建可扩展的微博架构(qcon beijing 2010演讲)</a></li>

<li><a href="http://timyang.net/architecture/twitter-cache-architecture/" rel="bookmark" title="October 28, 2009">Twitter架构图(cache篇)</a></li>

<li><a href="http://timyang.net/architecture/game-backend/" rel="bookmark" title="December 25, 2008">陈杰谈网游服务器的后端技术</a></li>

<li><a href="http://timyang.net/programming/memcache-mutex/" rel="bookmark" title="July 26, 2010">Memcache mutex设计模式</a></li>
</ul><!-- Similar Posts took 9.126 ms -->]]></content:encoded>
			<wfw:commentRss>http://timyang.net/architecture/qcon-beijing-ppt-pdf-slide/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
