PHP must free itself from Apache Server

Submitted by pure-php on Wed, 2005-03-02 20:24.

There has been a lot of Discussions about Enterprise PHP, specially after the release of PHP 5. PHP has a much better Object Model now, butt PHP is still NOT enterprise ready.

The first step toward enterprise is PHP's emancipation from Apache Web server. Since 4.1.0 Version, PHP supports sockets. Therefore PHP itself can serve HTTP Requests. Although PHP sockets are experimental, but it really rocks. I have written a simple IRC Sever in PHP using PHP sockets and it is up since about 70 days.

There are some greats apps using PHP Sockets. The best example I know is nanoweb. (Has anyone tested nanoweb under a heavy load?), but I miss some kind of "PHP-Container", like a servlet container, PHPlet is the first effort.

Until PHP is not able to have persistence between request, it hard to speak form Enterprise PHP. Persistence database connection and memory held session data beyond the hardware are the crucial disadvantages of PHP against Java.

memcached and Vulcan SRM are great efforts, but they are not the solution.

add new comment
Submitted by Magic Eight Ball (not verified) on Thu, 2005-03-10 21:57.

Hi.

What is wrong with Apache, exactly? It is stable, fast, mature, well understood, well supported and most of all -- it works.

FWIW, while I agree that sockets support in PHP is very handy, PHP is quite frankly too slow for even moderate loads. Its worse than that as on Windows the the sockets implementation really only works synchronously so something like webserving is a complete non-starter there.

While I don't disagree that sockets provide many new and exciting opportunityes for PHP, supplanting the webserver is not one of them in my humble opinion. It makes a nice toy, perhaps a handy in-a-pimch development environment and the possibility of writing "local browser apps".

If anything, I think PHP needs to integrate MORE with Apache. Why oh why is authentication typically handled at the PHP application layer and not at the server layer?

Submitted by pure-php on Thu, 2005-03-10 23:08.

Hi,
hanks for comments.
Nothing is wrong with Apache, really nothing.
But if you use PHP and Apache, you can't store session data in the memory between two requests. You have to store the data in a data base, or use PHP sessions.

Let me describe it in a concrete case.

Suppose you have a community, using PHP, Apache and a data base MySql Sqlite, Oracle etc.

1. You use PHP sessions, to store the session data. Its fast and it is simple.

After a few months, you have have lots of visitors, and you have to scale. You buy a new server, and build a server farm. Now you have a problem, because the data you stored in PHP sessions on server one, is not available on server two.

Now you store the session data in the data base. On server tow, you have to connect on each request to server one, in order to fetch the data from the data base. Now you have connection overhead and your application becomes slow.

But that is not all, you get more visitors, and you have to buy a new server (server three). Now you have a real problem. Your data base cannot server so many queries.

It becomes seriose, when you begin to replicate your data base.

So nothing is wrong with apache, but some thing is wrong with PHP and Apache on huge sites.

Submitted by Ryan Brooks (not verified) on Fri, 2005-03-11 15:19.

What you provide for an example is exactly the problem we're having - a large scale application, with a load balancer, means that sessions are unique to the server. our solution was to store the sessions in a database, but this means a higher query overhead. Unfortunately, PHP sockets are, in my opinion, still too experimental - but the concept is worthy of further experimentation.

Submitted by pure-php on Sun, 2005-03-13 15:18.

PHP Sockets are still expermental, and I hope we get a robust sockets support soon.

Submitted by Adrian Madrd (not verified) on Fri, 2005-05-20 18:29.

I can see how a servlet environment adds a lot of niceties but I also know that adds alot of overhead that you beeter make use of or you are going to pay a performance penalty. And performance was what you were looking for when you decided to add more servers! My point is PHP does need to become Java unless it _really_ needs to. I believe memcached can provide a distributed session container with enough redundancy and speed for most medium to large applications. It requires smart code and that means a lot of work but it can be done.

My .02 cents,

Adrian Madrid

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.