|
Does the defragmenting tool Diskeeper, have any use in today's computing, considering that computers are continually getting faster? |
|
i hate diskeeper, too slow, not enough features to defrag, and the main problem (and it's best feature) is that it runs in the background, which makes my frame rates drop in certain games and makes load time long. i've always used o&o defrag and just defrag when i have to, which isn't that often because i got all my games on a seperate HDD which doesnt get that fragmented. |
|
Diskeeper has a special feature to speed up SSDs even more. and it's too geeky for me to understand but maybe it'd work. that will be the only purpose of Diskeeper if you have an SSD (i think)I still use Diskeeper, but I have Gamebooster to turn it off along w/ other background programs (which I specifically instruct to turn off) when I'm playing games. so there, except I think, when my PC is idle it's using some resource which keeps my processor at a constant 10~20% usage state and that's not good for the battery. I think its good if it were a desktop with good specs though.. |
|
The hard drive is the bottleneck of the computer. I have studied how the linux kernel accesses data from the HDD. When a process makes a request for a resource (such has a hard drive) it gets put into a queue. if the HD is not being used it gets written almost right away, if it is being used (most of the time) the process must wait for its turn to come up. The next processes in the task list then gets started again until the resource is free. That's a little off topic but the point is when a program wants to get information off a hard drive it must wait, you can have a computer that is 3 Ghz quad core and that means nothing if that hard drive is busy. a good defragmenting tool does two things: 1) puts information that goes together, together. simple right? maybe an explanation for #2 is called for: hard drives are arranged in blocks it is quicker for a HD to get data off when all the data is in 1 block, so lets say data for 1 file is together, but it overflows into a new block from that which it starts. Now the HD has to pull two blocks of data, slowing it down. so what does this mean? a good defrag utility may want to leave gaps at the end of blocks because it cannot find any data that fits in there, without over flowing. There is no algorithm for 100% optimization and it is unlikely that there will ever be one. So that means that each company produces their best guess at what is the best. one that i think will work, and one that i dont know if it is being used is:
if a file takes up more than one block, write it to adjacent blocks with overflow (sometimes you just cant avoid it) Some file systems are "immune" to fragmentation, I'm not so sure about this, but I trust that when writing files they use a similar algorithm to what is above, which does help reduce it. One thing my approach fails at is accommodating for edits in file sizes, which is a huge oversight. But i have babbled on enough but to answer your question, most defiantly, as i said before, you can have a computer where the CPU is fast, and you have a lot of really fast ram, but all all that amounts to nothing if the hard drive is busy, and the best way to reduce hard drive seek time, is to keep it nice and clean. |
