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

so it's a documentation problem..


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

[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