ID:          26018
 Updated by:  [EMAIL PROTECTED]
 Reported By: theaxiom at charter dot net
-Status:      Open
+Status:      Closed
 Bug Type:    Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2003-10-28 09:49:25] [EMAIL PROTECTED]

so it's a documentation problem..

------------------------------------------------------------------------

[2003-10-28 08:46:30] theaxiom at charter dot net

Description:
------------
This page:
http://us4.php.net/manual/en/features.persistent-connections.php

This paragraph:
The second, and most popular, method is to run PHP as a module in a
multiprocess web server, which currently only includes Apache. A
multiprocess server typically has one process (the parent) which
coordinates a set of processes (its children) who actually do the work
of serving up web pages. When each request comes in from a client, it
is handed off to one of the children that is not already serving
another client. This means that when the same client makes a second
request to the server, it may be serviced by a different child process
than the first time. What a persistent connection does for you in this
case it make it so each child process only needs to connect to your SQL
server the first time that it serves a page that makes use of such a
connection. When another page then requires a connection to the SQL
server, it can reuse the connection that child established earlier.

This sentence:
What a persistent connection does for you in this case it make it so
each child process only needs to connect to your SQL server the first
time that it serves a page that makes use of such a connection. 

Expected result:
----------------
This:
"...in this case it make it..."

Should read like this:
"...in this case is make it..."



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=26018&edit=1

Reply via email to