Index: wp-includes/wp-db.php
===================================================================
--- wp-includes/wp-db.php	(revision 28005)
+++ wp-includes/wp-db.php	(working copy)
@@ -1338,6 +1338,15 @@
 				}
 			}
 
+			// Persistent connections with mysqli are prepended with 'p:', supported on PHP5.3+
+			if ( ! $new_link ){
+				if ( version_compare(PHP_VERSION, '5.3.0') >= 0 ){
+					$host = "p:$host";
+				} elseif ( WP_DEBUG ){
+					_e( 'MySQLi persistent connections are not supported with your version of PHP.' );
+				}
+			}
+
 			if ( WP_DEBUG ) {
 				mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
 			} else {
