about daemons and IPC

2006-08-26 Thread sdistefano
Hey people! For the first time I'm doing a client/server application, and I'm really confused with IPC stuff. I read the fastest method is shared memory, but I tryed mmap and found it tedious for the amount of data I'm handling (which is 30K at most, but mmap seems to get tedious for anything

Threading problem

2010-04-25 Thread sdistefano
I have the following issue: My program runs a thread called the MainThread, that loops trough a number of URLs and decides when it's the right time for one to be fetched. Once a URL has to be fetched, it's added to a Queue object, where the FetchingThread picks up and does the actual work.