in reply to Need a faster way to find matches
I tried to use threads, but the numerous calls to create the threads created way too much overhead for any speed improvement. My program is not memory intensive; the memory usage maxes out at just over 4MB before the program finishes; yet, by using threads the required memory exceeded the 2GB on my machine.
Dual core machines are very common these days. I was hoping to re-write the program to use both processors. I was thinking of having a service run on one processor (which takes requests to find pairs of numbers) while the main program looks for valid numbers, waits for all the pairs to be found, then finishes the last step of the process.
I'm using windows (it sounds like perl behaves slightly differently on windows). I need some type of inter-process communication mechanism to submit new requests, eventually wait and receive back the (hash table) results. At this point, I don't need detailed explanations, just your insights and recommendations on which modules are best suited to this problem.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to use my two processors
by BrowserUk (Patriarch) on Jan 18, 2010 at 13:00 UTC | |
by Anonymous Monk on Jan 18, 2010 at 22:11 UTC | |
by BrowserUk (Patriarch) on Jan 18, 2010 at 23:46 UTC | |
by remzak (Acolyte) on Jan 19, 2010 at 15:55 UTC |