in reply to Re: Why use threads over processes, or why use processes over threads?
in thread Why use threads over processes, or why use processes over threads?
I have another good reason to use threads. According to the threads doc, fork under windows is a hack using threads. Many of my programs run on Windows. I believe this sometimes led to "funky" (seemingly unforkish) behavior when I tried to use forks.
As listed in the threads doc:
Prior to perl 5.8 this has only been available to people embedding perl and for emulating fork() on windows.
So I pretty much just use threads now when I program for something that will run under windows. Thankfully, the memory leaks are being weeded out :) It would be really nice to get the best out of both worlds with threads, but I suppose it will just take time to polish it.
smiles
|
---|