RAID offers increases in speed and redundancy.
There are "basically" 3 configurations you might consider using for ***.
You can have an ATA RAID (Promise Technologies IDE Raid), or you can have
the more expensive but higher performing SCSI RAID. Onboard RAID is usually
Promise's IDE config. so we'll go into that for now:
1) RAID 0 (known as striping) - This allows "multiple disk spanning" In
other words... you can combine 2 HDD to act as one, with the advantages of
having 2 mechanical devides doing different thing simultaneously. It's a
sort-of copy of the traditional SCSI architecture which allows you to
read/write simultaneously with a single drive (big performance increases).
However, IDE RAID achieves this by juggling responsibilities (read/write)
between the two drives, and synchronizing.
requirements: 2 IDE HDD (same size)
2) RAID 1 (known as mirroring). - This simply allows for a "real-time
backup" onto another HDD. Useful for redundancy, but not much good for
performance (load times, etc.).
requirements: 2 IDE HDD (same size)
3) RAID 10 (first mirrored, then striped) - This is the best, but most
expensive solution. You get instant redundancy by mirroring, but you add 2
more HDD, and span the remaining two to the mirrors. Which the result is
higher performance, and even if 1 HDD fails, you still have that striping on
the other mirror. Which is ultimate peace of mind. It is the best of both
worlds.
requirements: 4 IDE HDD (same size)
RAID is a nice way to go if it's there, but SCSI as a whole is better
performing (1 disk is as efficient/fast as 2 IDE HDD in IDE RAID). You add
SCSI RAID to the equation, you'll see another increase in
performance/redundancy, since you can "hotswap them" (just rip out the
broken HDD, replace it, reboot, and it'll auto-restore in the background
while your OS is running). Although, SCSI is again more expensive as a
whole.
That's my 2 cents, hope I helped a bit.
Cheers,
Schumi