<?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>Comments on: Parallel processes in PHP</title>
	<atom:link href="http://dev.juokaz.com/php/parallel-processes-in-php/feed" rel="self" type="application/rss+xml" />
	<link>http://dev.juokaz.com/php/parallel-processes-in-php</link>
	<description>Random ideas, scripts and facts</description>
	<lastBuildDate>Mon, 29 Mar 2010 18:47:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Scott</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-161</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 02 Mar 2009 17:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-161</guid>
		<description>@Henk:  We are an application service provider and our codebase has hundreds of thousands of lines of PHP code in it.  When we need to write supporting utilities or automated behind-the-scenes tasks, we develop them in PHP because, well, why reinvent the wheel?  All of our database models, library functions, classes, etc all exist in PHP.  From this perspective, you can see why having these types of tools/features is very helpful and even necessary.</description>
		<content:encoded><![CDATA[<p>@Henk:  We are an application service provider and our codebase has hundreds of thousands of lines of PHP code in it.  When we need to write supporting utilities or automated behind-the-scenes tasks, we develop them in PHP because, well, why reinvent the wheel?  All of our database models, library functions, classes, etc all exist in PHP.  From this perspective, you can see why having these types of tools/features is very helpful and even necessary.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 網站製作學習誌 &#187; [Web] 連結分享</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-155</link>
		<dc:creator>網站製作學習誌 &#187; [Web] 連結分享</dc:creator>
		<pubDate>Mon, 02 Mar 2009 07:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-155</guid>
		<description>[...] Parallel processes in PHP [...]</description>
		<content:encoded><![CDATA[<p>[...] Parallel processes in PHP [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EllisGL</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-23</link>
		<dc:creator>EllisGL</dc:creator>
		<pubDate>Sat, 14 Feb 2009 01:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-23</guid>
		<description>@Henk: PHP was definitely not designed for task of such a nature. But we have come up with creative ways to achieve what was thought to be impossible for PHP to do. Yes I would like to PHP like programing language branch off that is more like C / C++ / Java in respects of these lower level accesses.</description>
		<content:encoded><![CDATA[<p>@Henk: PHP was definitely not designed for task of such a nature. But we have come up with creative ways to achieve what was thought to be impossible for PHP to do. Yes I would like to PHP like programing language branch off that is more like C / C++ / Java in respects of these lower level accesses.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juozas</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-22</link>
		<dc:creator>Juozas</dc:creator>
		<pubDate>Fri, 13 Feb 2009 23:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-22</guid>
		<description>&lt;i&gt;Is the PHP target audience even interested is such far reaching concurrency utils/tools/frameworks?&lt;/i&gt;

Probably not :) But since I&#039;m not doing degree in CS now, I like to experiment with things.</description>
		<content:encoded><![CDATA[<p><i>Is the PHP target audience even interested is such far reaching concurrency utils/tools/frameworks?</i></p>
<p>Probably not :) But since I&#8217;m not doing degree in CS now, I like to experiment with things.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: henk</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-21</link>
		<dc:creator>henk</dc:creator>
		<pubDate>Fri, 13 Feb 2009 23:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-21</guid>
		<description>On the hand it&#039;s good that someone of the PHP camp at least starts thinking a little about doing stuff in parallel in PHP. On the hand, for all but the most basic use case scenarios PHP still has a long way to go.

Traditional imperative languages like Java or C# have had parallelism build in right from the start and have been gradually improving on this over the years. A nice presentation about parallel library support for imperative languages is this one: 

http://www.parleys.com/display/PARLEYS/Home#slide=3;title=From%20Concurrent%20to%20Parallel;talk=24576007

Ok, the language uses there is Java, but the concept in general enough to be interesting to users of other languages. I wonder though if anything like the level of support discussed in that presentation is on the radar of the PHP development team. Is the PHP target audience even interested is such far reaching concurrency utils/tools/frameworks?</description>
		<content:encoded><![CDATA[<p>On the hand it&#8217;s good that someone of the PHP camp at least starts thinking a little about doing stuff in parallel in PHP. On the hand, for all but the most basic use case scenarios PHP still has a long way to go.</p>
<p>Traditional imperative languages like Java or C# have had parallelism build in right from the start and have been gradually improving on this over the years. A nice presentation about parallel library support for imperative languages is this one: </p>
<p><a href="http://www.parleys.com/display/PARLEYS/Home#slide=3;title=From%20Concurrent%20to%20Parallel;talk=24576007" rel="nofollow">http://www.parleys.com/display/PARLEYS/Home#slide=3;title=From%20Concurrent%20to%20Parallel;talk=24576007</a></p>
<p>Ok, the language uses there is Java, but the concept in general enough to be interesting to users of other languages. I wonder though if anything like the level of support discussed in that presentation is on the radar of the PHP development team. Is the PHP target audience even interested is such far reaching concurrency utils/tools/frameworks?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EllisGL</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-18</link>
		<dc:creator>EllisGL</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-18</guid>
		<description>Er - You have to find something talking about threading and IPC with PHP.. That will give you the biggest part of the puzzle.</description>
		<content:encoded><![CDATA[<p>Er &#8211; You have to find something talking about threading and IPC with PHP.. That will give you the biggest part of the puzzle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EllisGL</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-17</link>
		<dc:creator>EllisGL</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-17</guid>
		<description>I had found a great example before, but can&#039;t find it..
Here&#039;s something close:
http://home.jayhaabee.nl/trac/</description>
		<content:encoded><![CDATA[<p>I had found a great example before, but can&#8217;t find it..<br />
Here&#8217;s something close:<br />
<a href="http://home.jayhaabee.nl/trac/" rel="nofollow">http://home.jayhaabee.nl/trac/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juozas</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-16</link>
		<dc:creator>Juozas</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-16</guid>
		<description>Hi Phill,

maybe this package: http://www.phpclasses.org/browse/package/4082.html
or: http://devzone.zend.com/article/3341-Multithreading-in-PHP-with-CURL ?</description>
		<content:encoded><![CDATA[<p>Hi Phill,</p>
<p>maybe this package: <a href="http://www.phpclasses.org/browse/package/4082.html" rel="nofollow">http://www.phpclasses.org/browse/package/4082.html</a><br />
or: <a href="http://devzone.zend.com/article/3341-Multithreading-in-PHP-with-CURL" rel="nofollow">http://devzone.zend.com/article/3341-Multithreading-in-PHP-with-CURL</a> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phill Pafford</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-15</link>
		<dc:creator>Phill Pafford</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-15</guid>
		<description>EllisGL  Could you give an example or link?

Looking to find the best possible way for multi threading in PHP.</description>
		<content:encoded><![CDATA[<p>EllisGL  Could you give an example or link?</p>
<p>Looking to find the best possible way for multi threading in PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juozas</title>
		<link>http://dev.juokaz.com/php/parallel-processes-in-php/comment-page-1#comment-14</link>
		<dc:creator>Juozas</dc:creator>
		<pubDate>Fri, 13 Feb 2009 13:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://dev.juokaz.com/?p=108#comment-14</guid>
		<description>Yes, in PHP this is probably the best way - real parallelism is not very good.

I have &quot;host php&quot; -&gt; &quot;child phps&quot; approach implemented for CRON tasks. I&#039;m not always have access to cron tasks config, so I use php file, which is invoked every minute by cron. That file simulates cron&#039;s functionality and calls required scripts.</description>
		<content:encoded><![CDATA[<p>Yes, in PHP this is probably the best way &#8211; real parallelism is not very good.</p>
<p>I have &#8220;host php&#8221; -> &#8220;child phps&#8221; approach implemented for CRON tasks. I&#8217;m not always have access to cron tasks config, so I use php file, which is invoked every minute by cron. That file simulates cron&#8217;s functionality and calls required scripts.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
