Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Blaming Linux... (Score 2, Insightful) 178

Linux is pretty terrible for performance multi-threading, that's a fact. It features unreliable file IO too, but I digress..

In the case of Facebook, it's true that it's not the OS fault since Mutexes are always slow anyway.

There are lockless libraries that lock the CPU(s) for one cycle so that the program doesn't need to lock a mutex to increment a counter, for example. Thousands of times faster...

But these wouldn't have helped there. Like you said, it just seems like a design problem in the software. Still 140M users is very impressive.

Slashdot Top Deals

Software production is assumed to be a line function, but it is run like a staff function. -- Paul Licker

Working...