Which parallel pattern to use?
- by Wim Van Houts
I need to write a server application that fetches mails from different mail servers/mailboxes and then needs to process/analyze these mails.
Traditionally, I would do this multi-threaded, launching a thread for fetching mails (or maybe one per mailbox) and then process the mails.
We are moving more and more to servers where we have 8+ cores, so I…