Single-threading not considered harmful
Single-threading not considered harmful
Posted May 12, 2011 0:34 UTC (Thu) by jberkus (guest, #55561)In reply to: Single-threading not considered harmful by quotemstr
Parent article: Scale Fail (part 1)
Posted May 12, 2011 1:57 UTC (Thu)
by Trelane (subscriber, #56877)
[Link] (2 responses)
Posted May 19, 2011 9:11 UTC (Thu)
by renox (guest, #23785)
[Link] (2 responses)
Maybe multi/single-tasking would be better terms?
Posted May 22, 2011 10:47 UTC (Sun)
by kplcjl (guest, #75098)
[Link] (1 responses)
The problem is recognizing when a dedicated single process is the best answer to your problem or when multiple threads on the same server would be best. Generally, when your problem is data driven, the multiple thread solution would be better and when your problem is cpu intensive, a single thread dedicated to solving the problem combined with a data storage mechanizm so multiple servers can attack several individual problems concurrently may be the way to go.
This article seems to cover the situation where one of those solutions fit and therefore it becomes the "best" solution for every situation. It doesn't seem to apply to dumb coding mistakes that make good design go bad. For instance, I saw one case where it should have used "-" instead of "+" in one place of a mathematical equation. It took me a week and a half to convince the manager there was a mistake in the equation.
Posted May 22, 2011 11:08 UTC (Sun)
by kplcjl (guest, #75098)
[Link]
Single-threading not considered harmful
Single-threading not considered harmful
Single-threading not considered harmful
Single-threading not considered harmful