<feed xmlns="http://www.w3.org/2005/Atom">
<title type="text">博客园_YY哥的技术随笔</title>
<subtitle type="text">——关注Linux、数据库和云计算</subtitle>
<id>uuid:81dd3621-4002-4d2f-818c-b9b6db4f1f59;id=890</id>
<updated>2014-11-02T16:17:13Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<generator>feed.cnblogs.com</generator>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4070300.html</id>
<title type="text">在github上写博客 - YY哥</title>
<summary type="text">在github上写博客</summary>
<published>2014-11-02T16:09:00Z</published>
<updated>2014-11-02T16:09:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4070300.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4070300.html"/>
<content type="html">
在github上写博客<img src="http://counter.cnblogs.com/blog/rss/4070300" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4070300.html" target="_blank">在github上写博客</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4025070.html</id>
<title type="text">从veth看虚拟网络设备的qdisc - YY哥</title>
<summary type="text">
前段时间在测试docker的网络性能的时候,发现了一个veth的性能问题,后来给docker官方提交了一个PR,引起了一些讨论。再后来,RedHat的网络专家Jesper Brouer 出来详细的讨论了一下这个问题。
</summary>
<published>2014-10-14T11:45:00Z</published>
<updated>2014-10-14T11:45:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4025070.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4025070.html"/>
<content type="html">
前段时间在测试docker的网络性能的时候,发现了一个veth的性能问题,后来给docker官方提交了一个PR,引起了一些讨论。再后来,RedHat的网络专家Jesper Brouer 出来详细的讨论了一下这个问题。<img src="http://counter.cnblogs.com/blog/rss/4025070" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4025070.html" target="_blank">从veth看虚拟网络设备的qdisc</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4007126.html</id>
<title type="text">深入学习golang(5)—接口 - YY哥</title>
<summary type="text">
如果说goroutine和channel是Go并发的两大基石,那么接口是Go语言编程中数据类型的关键。在Go语言的实际编程中,几乎所有的数据结构都围绕接口展开,接口是Go语言中所有数据结构的核心。
</summary>
<published>2014-10-05T08:33:00Z</published>
<updated>2014-10-05T08:33:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4007126.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4007126.html"/>
<content type="html">
如果说goroutine和channel是Go并发的两大基石,那么接口是Go语言编程中数据类型的关键。在Go语言的实际编程中,几乎所有的数据结构都围绕接口展开,接口是Go语言中所有数据结构的核心。<img src="http://counter.cnblogs.com/blog/rss/4007126" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4007126.html" target="_blank">深入学习golang(5)—接口</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4004889.html</id>
<title type="text">深入学习golang(4)—new与make - YY哥</title>
<summary type="text">
Go语言中的内建函数new和make是两个用于内存分配的原语(allocation primitives)。对于初学者,这两者的区别也挺容易让人迷糊的。简单的说,new只分配内存,make用于slice,map,和channel的初始化。
</summary>
<published>2014-10-03T04:54:00Z</published>
<updated>2014-10-03T04:54:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4004889.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4004889.html"/>
<content type="html">
Go语言中的内建函数new和make是两个用于内存分配的原语(allocation primitives)。对于初学者,这两者的区别也挺容易让人迷糊的。简单的说,new只分配内存,make用于slice,map,和channel的初始化。<img src="http://counter.cnblogs.com/blog/rss/4004889" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4004889.html" target="_blank">深入学习golang(4)—new与make</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4004642.html</id>
<title type="text">深入学习golang(3)—类型方法 - YY哥</title>
<summary type="text">
在Go语言中,我们可以给任何类型(包括内置类型,但不包括指针和接口)定义方法,这又是Go语言的一大特色。
</summary>
<published>2014-10-02T16:13:00Z</published>
<updated>2014-10-02T16:13:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4004642.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4004642.html"/>
<content type="html">
在Go语言中,我们可以给任何类型(包括内置类型,但不包括指针和接口)定义方法,这又是Go语言的一大特色。<img src="http://counter.cnblogs.com/blog/rss/4004642" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4004642.html" target="_blank">深入学习golang(3)—类型方法</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4003729.html</id>
<title type="text">深入学习golang(2)—channel - YY哥</title>
<summary type="text">
“网络,并发”是Go语言的两大feature。Go语言号称“互联网的C语言”,与使用传统的C语言相比,写一个Server所使用的代码更少,也更简单。写一个Server除了网络,另外就是并发,相对python等其它语言,Go对并发支持使得它有更好的性能。Goroutine和channel是Go在“并发”方面两个核心feature。
</summary>
<published>2014-10-01T16:05:00Z</published>
<updated>2014-10-01T16:05:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4003729.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4003729.html"/>
<content type="html">
“网络,并发”是Go语言的两大feature。Go语言号称“互联网的C语言”,与使用传统的C语言相比,写一个Server所使用的代码更少,也更简单。写一个Server除了网络,另外就是并发,相对python等其它语言,Go对并发支持使得它有更好的性能。Goroutine和channel是Go在“并发”方面两个核心feature。<img src="http://counter.cnblogs.com/blog/rss/4003729" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4003729.html" target="_blank">深入学习golang(2)—channel</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/4002707.html</id>
<title type="text">深入学习golang(1)—数组与切片 - YY哥</title>
<summary type="text">理解go语言中的数组与切片</summary>
<published>2014-09-30T13:27:00Z</published>
<updated>2014-09-30T13:27:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/4002707.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/4002707.html"/>
<content type="html">
理解go语言中的数组与切片<img src="http://counter.cnblogs.com/blog/rss/4002707" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/4002707.html" target="_blank">深入学习golang(1)—数组与切片</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/3993712.html</id>
<title type="text">Docker实践(6)—CentOS7上部署Kubernetes - YY哥</title>
<summary type="text">CentOS7上部署Kubernetes</summary>
<published>2014-09-25T13:07:00Z</published>
<updated>2014-09-25T13:07:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/3993712.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/3993712.html"/>
<content type="html">
CentOS7上部署Kubernetes<img src="http://counter.cnblogs.com/blog/rss/3993712" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/3993712.html" target="_blank">Docker实践(6)—CentOS7上部署Kubernetes</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/3986640.html</id>
<title type="text">CoreOS实践(2)—在coreos上安装Kubernetes - YY哥</title>
<summary type="text">CoreOS实践(2)—在coreos上安装Kubernetes</summary>
<published>2014-09-22T12:06:00Z</published>
<updated>2014-09-22T12:06:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/3986640.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/3986640.html"/>
<content type="html">
CoreOS实践(2)—在coreos上安装Kubernetes<img src="http://counter.cnblogs.com/blog/rss/3986640" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/3986640.html" target="_blank">CoreOS实践(2)—在coreos上安装Kubernetes</a>,转载请注明。</p>
</content>
</entry>
<entry>
<id>http://www.cnblogs.com/hustcat/p/3980244.html</id>
<title type="text">Docker实践(5)—资源隔离 - YY哥</title>
<summary type="text">Docker实践(5)—资源隔离</summary>
<published>2014-09-18T14:41:00Z</published>
<updated>2014-09-18T14:41:00Z</updated>
<author>
<name>YY哥</name>
<uri>http://www.cnblogs.com/hustcat/</uri>
</author>
<link rel="alternate" href="http://www.cnblogs.com/hustcat/p/3980244.html"/>
<link rel="alternate" type="text/html" href="http://www.cnblogs.com/hustcat/p/3980244.html"/>
<content type="html">
Docker实践(5)—资源隔离<img src="http://counter.cnblogs.com/blog/rss/3980244" width="1" height="1" /><br/><p>本文链接:<a href="http://www.cnblogs.com/hustcat/p/3980244.html" target="_blank">Docker实践(5)—资源隔离</a>,转载请注明。</p>
</content>
</entry>
</feed>