Tag Archives: Multithread

The “Many Core” Problem

We, as developers, have a problem. CPUs will continue to have more cores, and each core is not going to be any faster. The only way to write faster applications is to write multithreaded code, which has two challenges: 1) Multithreaded code is complex to write and think about. 2)Multithreaded code is difficult to test. From what I’ve seen, people are pursuing 4 approaches.
Continue reading

Posted in Architecture, Languages | Tagged , , | 21 Comments