tags:

views:

65

answers:

2

i mainly focus on the web, i think i will never create desktop applications.

so i think it's better for me to focus on typical web languages like php.

i know an advantage java has over php is multi threading though.

will php ever support this feature in the future?

thanks

+3  A: 

Technically, Apache does support multithreading with its workers. However, PHP does not appear to be introducing better threading support in PHP 6, so you shouldn't count on it.

See this mailing list post for the source.

phsource
+3  A: 

The better question to ask is why you would possibly need more than one thread to service a single HTTP request.

Earlz
comet/reverse-ajax.
never_had_a_name
@fayer, Comet is more than a single http request.
Entendu