From Ed Bott in Vista Inside Out:
"Should you get involved in paging file management and how?"
"If you have more than one drive, moving the paging file to a fast drive
that is not your system drive is a good idea. Using multiple paging files
that are split over two or more physical discs is an even better idea,
because your disc controller can process multiple requests to read and
write data concurrently. Don't make the mistake of creating two or more
paging files using multiple volumes on a single physical disc, however.
*If you have a single hard disc that contains C, D, and E volumes, for
example, and you split the page file over two or more of these, you may
actually make your computer run more slowly than before.* In that
configuration, the heads on the physical discs have to do more work,
loading pages from different parts of the physical disc sequentially,
rather than loading data from a single contiguous region of the hard disc.
If your are short of hard disc space, you might consider setting a smaller
inital page file size. You can use a handy script from Windows MVP Bill
James to monitor current page file usage and session peak usage. This
tool free at
http://billsway.com/notes_public/WinXP_Tweaks/ was written
for Windows XP but works fine for Vista."
Read more in Ed Bott's book at 747.
This is the theory, although as I said, I haven't seen much difference on
a box that has 1GB of RAM or more.
The paging file is a way to hand over more memory when programs demand it.
Windows tries to solve this by taking a snaphsot of a memory chunk and
tossing it to the HD so the demanding program can use it. The program it
borrowed from is going to demand that memory back, and when it does, a
hard page fault happens. The snapshots are virtual memory that sits in the
paging files. If your virtual memory is on the same disc as your
programs, then Windows has to strain or fly around like a chicken with its
head cut off to keep all the programs going. Bringing the snapshot into
memory may force another snap shot, and another, and so on.
If the paging file is on another disc, that doesn't have your programs,
windows can run faster if it juggles two discs at the same time--provided
you have the room.
You can use the Resource monitor to monitor how many page faults you're
getting--and if you're getting several--say a couple dozen hard faults per
second--you should consider putting paging files on two or more fast hard
drives if you have them.
http://windowshelp.microsoft.com/Windows/en-US/Help/b9dca7ff-88b6-4d8b-9ca2-49cff3cd1c951033.mspx
If you disable the paging file and don't have enough RAM, your programs
will refuse to load and will crash. If you stick to the 2GB minimum, you
won't have problems. If you don't, you'll get out of memory messages, and
the programs could crash and in some of them you could lose your work.
If you have over 2GB of RAM on your box, you can consider disabling the
paging file. If not, forget it. This will cause faster memory access and
management than is physically possible for your RAM.
CH