 | News Feed |
 | Jobs Feed |
Sections
|
| feed this: |  |
Shay Ben Moshe's Blog: PDO Persistent Connection Analysis
by Chris Cornutt June 28, 2011 @ 08:11:15
Shay Ben Moshe has a new post to his blog today looking at some of the benefits that using the persistent connections offered in PDO can have on your application.
PDO is an abstraction layer for database connections in PHP, and it became increasingly popular in the past few years. PDO gives us the option to use a persistent connection. If we don't use this option, a new connection is created for each request. If we do use this option, the connection is not closed at the end of the script, and it is then re-used by other script requests.
He shares the setup for his testing (hardware and MySQL configuration) and some of the results from his tests using the Apache ab tool for making web requests against an application. You'll need to download the archived file to see the results, though. It also includes the files he used to test with, comparing regular connections to the persistent ones.
voice your opinion now!
pdo persistent connection benchmark apache ab request
Alex Mills' Blog: Why WordPress Doesn't Have Built-In Persistent Caching
by Chris Cornutt August 13, 2010 @ 11:20:37
Alex Mills has a interesting post to his blog answering a question he and several of the other WordPress developers at Automatic get about their blogging engine - why it doesn't including a default caching layer.
WordPress does actually have a built-in cache called the object cache. It was introduced way back in 2005 1 and it basically caches database query results. [...] However as soon as the page is done being generated, that object cache is discarded. Initially the object cache cached these little chunks of data to the filesystem so that they could be reused on subsequent pageviews. While great in theory, the concept turned out to be terrible in practice.
They opted out of the persistent object caching because, well, it was slower than some of the preexisting alternatives out there like database caching and caching plugins (with WP Super Cache).
voice your opinion now!
wordpress persistent cache plugin
Lukas Smith's Blog: Persistent connections with MSSQL
by Chris Cornutt December 11, 2008 @ 12:01:26
Lukas Smith is looking for a little help on a strange problem he's seeing connecting to a SQL Server with persistent connections:
We are connecting to SQL Server via mssql_pconnect(). MaxChilds is set to 256 and we are only establishing one connection per request. So as a result I am expecting a maximum of 256 established connections. A client went into production yesterday and due to a missing index the server ended up being insanely loaded, as the queries started to block each other. The sysadmin checked the state of things via netstat and found that there were close to 500 tcp connections to the SQL Server. What gives?
He checked FreeTDS and the MaxRequestsPerChild settings to ensure that nothing there could have caused the problem, but hasn't found any hints so far. If he can't solve it right away, he also wonders if there's a way to kill idle connections if they're not used in a certain amount of time.
There's already one connect that mentions a similar issue but with Oracle connections, also on RHEL, but no definitive answers so far.
voice your opinion now!
persistent connection mssql mssqlpconnect tcp problem freetds
Maggie Nelson's Blog: To persist or not to persist?
by Chris Cornutt August 22, 2008 @ 11:18:12
On her blog, Objectively Oriented, Maggie Nelson looks at a topic she was debating for a new application - whether or not to use persistent connections to her database.
There's a connection already waiting for you. Yay, right? Well, with MySQL, connecting is actually really really cheap, and frankly, if you are using persistent connections, you might encounter some issues with Apache going zombie on processes that use a connection, effectively taking that connection out of use. Grrr.
She did some research on the topic but found contradicting evidence for both sides. Eventually, what her choice boiled down to was this possible issue mentioned by Jay Pipes (of MySQL):
If you use Apache, Apache can zombie a PHP process and cause the mysql connection to be held until the mysql server restarts...
voice your opinion now!
persistent connection database mysql choice
DeveloperTutorials.com: Developing State-enabled Applications With PHP
by Chris Cornutt April 13, 2007 @ 08:55:00
The Developer Tutorial website has a new article posted today about the creation of "state-enabled applications" with PHP. Basically, a chunk of functionality to keep user data persistent throughout the whole time they're on the site.
A major drawback is that while browsing from one page to another, the website does not remember the State of the browsing session. This make interactivity almost impossible. In order to increase interactivity, the developer can use the session handling features of PHP to augment the features of HTTP in order to remember the State of the browsing session.
They look at two solutions - using cookies and using sessions. Cookies are simple enough, but when it comes to sessions, there's actually two different roads to follow: with cookies enabled and without. They have to be handled slightly differently, but both essentially work the same way.
voice your opinion now!
tutorial stateenabled persistent session cookie tutorial stateenabled persistent session cookie
|
Community Events
Don't see your event here? Let us know!
|