<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>多进程 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/%E5%A4%9A%E8%BF%9B%E7%A8%8B/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Thu, 25 Dec 2014 10:28:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Tornado多进程启动的2种方法</title>
		<link>https://www.coder4.com/archives/4265</link>
					<comments>https://www.coder4.com/archives/4265#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Mon, 30 Jun 2014 04:49:15 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Tornado]]></category>
		<category><![CDATA[多进程]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=4265</guid>

					<description><![CDATA[单进程： server = HTTPServer(app) server.listen(8888) IOLoop.instance().start() 多进程，方案1： server = HTTPServer(app) server.bind(8888) server.start(0) # Forks multiple sub-processes IOLoop.instance().start() 多进程，方案2： sockets = tornado.netutil.bin[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/4265/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Python多进程并发(multiprocessing)</title>
		<link>https://www.coder4.com/archives/3352</link>
					<comments>https://www.coder4.com/archives/3352#comments</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Tue, 05 Jun 2012 06:46:50 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[multiprocessing]]></category>
		<category><![CDATA[多进程]]></category>
		<category><![CDATA[并发]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3352</guid>

					<description><![CDATA[由于Python设计的限制(我说的是咱们常用的CPython)。最多只能用满1个CPU核心。 Python提供了非常好用的多进程包multiprocessing，你只需要定义一个函数，Python会替你完成其他所有事情。借助这个包，可以轻松完成从单进程到并发执行的转换。 1、新建单一进程 如果我们新建少量进程，可以如下： import multiprocessing import time def func(msg): for i in xrange(3):[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3352/feed</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			</item>
		<item>
		<title>[转载]多线程还是多进程？？</title>
		<link>https://www.coder4.com/archives/319</link>
					<comments>https://www.coder4.com/archives/319#comments</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Fri, 29 Jan 2010 17:34:32 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[大数据技术]]></category>
		<category><![CDATA[epoll]]></category>
		<category><![CDATA[多线程]]></category>
		<category><![CDATA[多进程]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=319</guid>

					<description><![CDATA[转载自：http://hi.baidu.com/yancncen/blog/item/b43bf4fee7c7c4385d6008de.html 最近，看了几个开源代码的server框架，有了一些自己的想法，把它记下来。 针对server要求高性能的同时还需要稳定性的特点，有了这样一个构思，建立一个EPOLL+多进程+线程池的server框架，暂且叫它emptyServer(e:epoll,m:muti,p:process,t:thread,y:ycc.哈哈)。 考虑的出发点如下：[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/319/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
