Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Why are we so worried about RAM (Score 1, Informative) 505

This is a false dichotomy. Most software that uses less RAM is actually also faster.

Nowadays, it's usually faster to recompute than read it all back from RAM, and if an interactive program uses a lot of RAM, then it's likely keeping a lot of junk in memory that it doesn't need.

Wow, this is a perfect example of completely misunderstanding memory-CPU tradeoffs. No. For a non-trivial amount of data, it is never cheaper to recompute the data, at access-time. It may be faster overall, as you might be able to use the freed RAM in a better way elsewhere, but it will never speed the accessing task up.

If you recompute the data constantly, it has to hit RAM and then read it back, unless you're dealing with a dataset small enough to be stored completely in cache, in which case this is a nonissue anyway. More caching is never a bad thing, so long as you set smart defaults for how the caching is done, and you allow the users to configure it. More RAM, in the hands of a smart developer, is a Good Thing (TM).

Comment Re:There are some things we shouldn't see (Score 2, Insightful) 330

I don't like the Neo Nazis. I'd rather they chose not to say what they say. But I will defend, to the death if needs must, their right to say it. Someday, I might find myself the lone voice of dissension. I'd hope no matter what my views you'd stand up and support my right to say them. Otherwise, one day *you* might be that lone voice...

I agree fully, and that's why my Troll moderation is nonsensical. Apparently I should've laid down the sarcasm a bit more thickly...

Slashdot Top Deals

Real Programmers don't eat quiche. They eat Twinkies and Szechwan food.

Working...