<?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: Are PHP persistent connections evil ?</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:23:57 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: MySQL: блокировки и persistent connection &#171; Oracle mechanics</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-591018</link>
		<dc:creator>MySQL: блокировки и persistent connection &#171; Oracle mechanics</dc:creator>
		<pubDate>Sat, 20 Jun 2009 23:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-591018</guid>
		<description>[...] &#8211; см., например, обсуждение в блоге Peter Zaitsev Are PHP persistent connections evil ?. Для решения проблемы и учитывая, что в случае с MySQL [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; см., например, обсуждение в блоге Peter Zaitsev Are PHP persistent connections evil ?. Для решения проблемы и учитывая, что в случае с MySQL [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oscar duron</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-503395</link>
		<dc:creator>oscar duron</dc:creator>
		<pubDate>Thu, 12 Mar 2009 10:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-503395</guid>
		<description>I you are only reading data, persistent connection is a good option if not the best. If you are updating data, think twice and undertand the risks and problems using a persistent connection. If you are using transactions, persistent connections do not apply.</description>
		<content:encoded><![CDATA[<p>I you are only reading data, persistent connection is a good option if not the best. If you are updating data, think twice and undertand the risks and problems using a persistent connection. If you are using transactions, persistent connections do not apply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel Van Hof</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-503346</link>
		<dc:creator>Michel Van Hof</dc:creator>
		<pubDate>Thu, 12 Mar 2009 09:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-503346</guid>
		<description>Hi, I have a situation (although not with php) that has been troubeling me a long time now.

I have a Server Application (in-house) which in turn let&#039;s a bunch of clients connect to it. These clients give feebdack.. A LOT of feedback, (think in terms of narrowcasting players which tell me what image they have played at what time and which screen.. such an image is displayed for 10 seconds and then goes to the next.. these are 8460 records per day per screen per player.. ). Next to this, they query data (are there new files, ads etc) and they log certain events..

Now i tryed doing this with the Mysql.NET connector and opening and closing the connection but up until now, i haven&#039;t got this working yet.. so for now, i&#039;m using a concurrent connection per client that is connected to my server. Performance has never been fantastic though.

So my question is: Per query connection of keep a concurrent connection per client that is connected ?</description>
		<content:encoded><![CDATA[<p>Hi, I have a situation (although not with php) that has been troubeling me a long time now.</p>
<p>I have a Server Application (in-house) which in turn let&#8217;s a bunch of clients connect to it. These clients give feebdack.. A LOT of feedback, (think in terms of narrowcasting players which tell me what image they have played at what time and which screen.. such an image is displayed for 10 seconds and then goes to the next.. these are 8460 records per day per screen per player.. ). Next to this, they query data (are there new files, ads etc) and they log certain events..</p>
<p>Now i tryed doing this with the Mysql.NET connector and opening and closing the connection but up until now, i haven&#8217;t got this working yet.. so for now, i&#8217;m using a concurrent connection per client that is connected to my server. Performance has never been fantastic though.</p>
<p>So my question is: Per query connection of keep a concurrent connection per client that is connected ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oscar duron</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-379182</link>
		<dc:creator>oscar duron</dc:creator>
		<pubDate>Fri, 14 Nov 2008 20:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-379182</guid>
		<description>Please help! in PHP mySQL, the use of SELECT FOR UPDATE and SELECT LOCK IN SHARE MODE, How to use it? They don&#039;t make any sense to me in a web application, because when you first read the data (SELECT FOR UPDATE)the script ends once it sends the filled form to be updated on the client, so there is an auto mysql_close.(Which would rollback your transaction in the SELECT)
With a persistent connection, may be it would keep the transaction pending, but there is no way to store the connection persistent link resource in a session or anywhere else, so there is no way to open the updater script with the same link resource to UPDATE and then COMMIT, or how does it works?</description>
		<content:encoded><![CDATA[<p>Please help! in PHP mySQL, the use of SELECT FOR UPDATE and SELECT LOCK IN SHARE MODE, How to use it? They don&#8217;t make any sense to me in a web application, because when you first read the data (SELECT FOR UPDATE)the script ends once it sends the filled form to be updated on the client, so there is an auto mysql_close.(Which would rollback your transaction in the SELECT)<br />
With a persistent connection, may be it would keep the transaction pending, but there is no way to store the connection persistent link resource in a session or anywhere else, so there is no way to open the updater script with the same link resource to UPDATE and then COMMIT, or how does it works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rubén Ortiz &#187; Apache. MaxClients y más&#8230;</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-298300</link>
		<dc:creator>Rubén Ortiz &#187; Apache. MaxClients y más&#8230;</dc:creator>
		<pubDate>Tue, 13 May 2008 08:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-298300</guid>
		<description>[...] http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/" rel="nofollow">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raci</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-258488</link>
		<dc:creator>raci</dc:creator>
		<pubDate>Thu, 27 Mar 2008 20:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-258488</guid>
		<description>how to increasr max connection limit in mysql i am getting error too many connection as i am using Shared hosting
,. how to change the setting in Cpanel</description>
		<content:encoded><![CDATA[<p>how to increasr max connection limit in mysql i am getting error too many connection as i am using Shared hosting<br />
,. how to change the setting in Cpanel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pseudo Singleton Pattern com PHP5 &#171; Julio Vedovatto</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-253186</link>
		<dc:creator>Pseudo Singleton Pattern com PHP5 &#171; Julio Vedovatto</dc:creator>
		<pubDate>Sat, 15 Mar 2008 23:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-253186</guid>
		<description>[...] que conexão persistente com o banco de dados é cafonérrimoooo, para saber, leia este artigo: Are PHP persistent connections evil?. O pessoal do suporte técnico do Onda me indicou o artigo (adoro quando provam que eu estou [...]</description>
		<content:encoded><![CDATA[<p>[...] que conexão persistente com o banco de dados é cafonérrimoooo, para saber, leia este artigo: Are PHP persistent connections evil?. O pessoal do suporte técnico do Onda me indicou o artigo (adoro quando provam que eu estou [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogging in French community ?? &#171; Charles Fomevor&#8217;s Weblog</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-230378</link>
		<dc:creator>Blogging in French community ?? &#171; Charles Fomevor&#8217;s Weblog</dc:creator>
		<pubDate>Sat, 12 Jan 2008 12:43:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-230378</guid>
		<description>[...] mysqli pour des problèmes de performances et de stabilité (voir ce post très intéressant : http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/). Apparemment, ces problèmes ont été résolus avec mysqlnd puisque cette fonctionnalité [...]</description>
		<content:encoded><![CDATA[<p>[...] mysqli pour des problèmes de performances et de stabilité (voir ce post très intéressant : <a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/)" rel="nofollow">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/)</a>. Apparemment, ces problèmes ont été résolus avec mysqlnd puisque cette fonctionnalité [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogs - Persistent is evil</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-213648</link>
		<dc:creator>Blogs - Persistent is evil</dc:creator>
		<pubDate>Fri, 07 Dec 2007 04:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-213648</guid>
		<description></description>
		<content:encoded><![CDATA[<p>[...] que ver con el hecho de porque no se deben utilizar conexiones persistentes a la base de datos.  <a href="http://www.mysqlperformanceblog.com/...nections-evil/" rel="nofollow">http://www.mysqlperformanceblog.com/&#8230;nections-evil/</a>  Que es algo que tenamos activado en CemZoo, porque yo que vengo de un mundo de programacin [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roms BLOG &#187; mysqlnd, un driver MySQL optimisé pour PHP</title>
		<link>http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/comment-page-1/#comment-212096</link>
		<dc:creator>Roms BLOG &#187; mysqlnd, un driver MySQL optimisé pour PHP</dc:creator>
		<pubDate>Tue, 04 Dec 2007 17:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/#comment-212096</guid>
		<description>[...] mysqli pour des problèmes de performances et de stabilité (voir ce post très intéressant : http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/). Apparemment, ces problèmes ont été résolus avec mysqlnd puisque cette fonctionnalité [...]</description>
		<content:encoded><![CDATA[<p>[...] mysqli pour des problèmes de performances et de stabilité (voir ce post très intéressant : <a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/)" rel="nofollow">http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/)</a>. Apparemment, ces problèmes ont été résolus avec mysqlnd puisque cette fonctionnalité [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
