Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know much about using threads but I looked into pthreads for php and it seems very interesting and easy, or easier than I thought...

I searched for examples and looked through the documentation but I couldn't find any real-world examples of when it is actually beneficial to use threads, it sure is for long tasks that don't depend on each other like doing many http requests or maybe sending mails.

But what about Writing log entries? Inserts to databases? (like tracking user activity) Fetching from database (can I return data from a thread?)

Will this increase performance or is the overhead of creating threads too much? (although I could use a worker pool too get less overhead, I think... )

Any advice or examples are greatly appreciated!

share|improve this question
   
"... examples of when it is actually beneficial to use threads" Then maybe re-ask yourself if you really need them ;) – Artaex Media Jan 2 at 17:51
2  
php is not multithreaded, and most likely never will be. many of its internal libraries and add-ons are not thread-safe. you can "fake" threads by spawning copies of php via fork, exec, popen, etc.. but they're not true threads, and the overhead vastly outweighs any microscopic gains you might hope to get. – Marc B Jan 2 at 17:54
1  
Php is not multi threaded, but looks like there is a pecl extension that gives php multi thread capabilities, github.com/krakjoe/pthreads seems legit – joschua011 Jan 2 at 18:16

2 Answers

up vote 6 down vote accepted

There are many examples included in the distribution and available on github:

https://github.com/krakjoe/pthreads/tree/master/examples

These examples include such things as a general purpose thread pool, a multi-threaded socket server and an SQLWorker.

The Threads pthreads creates are as sane, and as safe, as the threads that Zend itself sets up to service requests via a multi-threaded SAPI. They are compatible with all the same functionality, plus all you expect from a high level threading API (nearly).

There will always be limitations to implementing threading deep in the bowels of a shared nothing architecture, but the benefits, in terms of using better the physical resources at your disposal, but also the overall usability of PHP for any given task far outweigh the overhead of working around that environment.

The objects included in pthreads work as any other PHP object does, you can read, write and execute their methods, from any context with a reference to the object.

You are thinking exactly along the right lines: a measure of efficiency is not in the number of threads your application executes but how those threads are utilized to best serve the primary purpose of the application. Workers are a good idea, wherever you can use them, do so.

With regard to the specific things you asked about, a LoggingWorker is a good idea and will work, do not attempt to share that stream as there is no point, it will be perfectly stable if the Worker opens the log file, or database connection and stackables executed by it can access them. An SQLWorker is included in the examples, again, another good idea where the API lacks a decent async API, or you just get to prefer the flow of multi-threaded programming.

You won't get a better, or more correct answer: I wrote pthreads, on my own.

share|improve this answer
Who the heck downvoted this? – Charles Jan 3 at 20:07
@Charles the person must be a clown .... Joe .. Well done – Baba Jan 28 at 8:55
Thanks :) I wasn't being a clown, pthreads is up against an unbelievable amount of content on the internet, that is frankly, wrong. If any of the things people said about PHP and it's thread safety or reliability were true, pthreads simply would not work. When faced with facts we do not understand the thing to do is research, not repeat everything you once read about a subject and wrap it up like an answer. I was disappointed that someone with such a vast amount of points under their belt didn't deem it necessary to look further than the past... – Joe Watkins Jan 28 at 10:02
@JoeWatkins i was referring to the person that down voted your answer (Who the heck downvoted this? – Charles and i replied .... The person must be a clown) .... Well done Joe Thanks for the pthreads and for adding value to PHP .... Am expecting to hear when this would be part of the cored PHP .. Nice one – Baba Jan 28 at 11:26
Oh, I felt cold for having downvoted someone who puts so much effort into helping, I do feel a bit of a clown about that, but hopefully it's understanable ... I explain the past, design, implementation and implications in great detail in the following answer: stackoverflow.com/questions/209774/does-php-have-threading/… The fact is, it may never be included in the core ( nor is apc, lets not forget to be integral doesn't require inclusion in the core ), for a rationale of that see the post I have linked too. Thanks for your kind words. – Joe Watkins Jan 28 at 11:34
show 1 more comment

but I couldn't find any real-world examples of when it is actually beneficial to use threads

That's because the general way PHP works is incompatible with the way threads want to work. You have to remember that PHP was designed and intended to serve HTTP requests. This means that PHP is usually executed one of three ways:

  1. Most rudely, as a CGI script. On every HTTP request, the PHP binary is started, it executes the script, emits output, and exits.
  2. Most niftily, as a FastCGI worker. On every HTTP request, the HTTP server passes things off to the FastCGI daemon, which in turn uses a child process of the PHP binary to execute the script, and emits the output back to the user. The PHP worker will serve a few hundred (or thousand) requests this way, before it's recycled.
  3. Usually, as mod_php, which integrates the PHP interpreter directly into Apache. This means that the HTTP server itself is responsible for executing the script and taking care of the output.

Under CGI, threading would be rude because the binary needs to exit promptly.

Under mod_php, threading would be rude because you're inside the process space of Apache, not standing alone, and you have no guarantee that you're going to be thread-safe. The normal Apache worker module even assumes otherwise.

Only under FastCGI would it not be rude, and even then, it's crude.

While PHP can be used as a general purpose programming language, and you can write daemons in it and do all sorts of other entertaining things with it, threading is not, has not been, and will not likely ever be standard operating procedure. This doesn't even touch the fact that many extensions aren't even thread-safe.

Standard PHP practice when dealing with jobs that can be done asynchronously is to use a message queue, sometimes called a work queue. You can either roll your own through cron jobs and clever hacks, or you can use one of dozens of standard implementations. There are so many that there's even a library to gloss over the differences so you can use pretty much any of them and not really need to care too much about it.

Personally I'm a big fan of Gearman and the accompanying PECL extension, with a side dish of supervisor to keep the workers running smoothly.

share|improve this answer
1  
I'd love some constructive criticism to go along with that downvote. – Charles Jan 3 at 20:07
You're highly likely a person that could have researched a proper answer, but instead decided it would be best to assume. It's fine to make observations, based on research or knowledge, you assumed and then informed others based on incorrect assumptions. That's not useful, so I down voted it. stackoverflow.com/questions/209774/does-php-have-threading/… I think this addresses, most of the concerns raised. You're obviously a person that puts a lot of effort into trying to help others, which is commendable. What we knew 5 years ago just isn't true today ... – Joe Watkins Jan 28 at 9:56
@JoeWatkins, if you will review what I wrote, you'll find that all of the arguments I used against using the threading bits are grounded in reality, not built on FUD. Spawning threads in a mod_php, CGI or FastCGI process isn't part of their intended use and many PHP extensions are not thread-safe. The common use case of threading is for background tasks, and there are better, cleaner, more sane solutions for that. While it's great that you've worked so hard to make threading a reality in PHP, it's not going to be something that takes off without extension support. – Charles Jan 28 at 16:57
The vast majority of php extensions are thread safe, you are simply wrong about that. Execution of the interpreter in a multi-threaded environment has been part of the design of PHP for more than 13 years, so again, simply wrong about that. What is more, if you had done any research, you would know that the environment pthreads executes in is MORE isolated and by proxy SAFER than the apache2 worker support. You didn't install pthreads or do any research, you regurgitated incorrect observations that you have made or were passed down to you, that's not the correct way to behave, it really isn't. – Joe Watkins Apr 19 at 13:01
@JoeWatkins, while your feedback is appreciated, the chip on your shoulder isn't. It admittedly has been a long time since I aggressively went out and looked at the state of thread safety in most PHP extensions. It is possible to correct outdated misconceptions without the insulting condescension. If you expect you and your extension to be taken seriously, you need to drop the attitude, pronto. – Charles Apr 19 at 16:32
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.