On Wed, 26 Jan 2005 11:29:38 -0600, REM <(E-Mail Removed)> wrote:
>I had 256 megs of ram on that test machine. Any quality program
>'should' open the 100 meg file if you have that much free ram. If not,
>the swap file is used and that's a pretty slow operation.
Editors don't necessarily require much ram since they can work with
file pointers and short (maybe only 50k or 100k) sections of a file at
a time. Editing (writing) is done with multiple filing operations.
Thus, large files will take noticeable editing time, not because of
the use of the swap file, but simply because the large file is being
re-pieced together when additions or deletions are made.
File viewers can view any portion of really huge files seemingly
"instantly" because of the use of file pointers. They requre
insignifcant ram.
A truly "quality" editor would handle small and medium sized files up
to several tens of megs in size in extended memory up to the point
when the file has to be re-written (when done editing it). It would
be smart enough to handle huge files using pointers and filing methods
so it could handle files of any size.
But there's no way around having to re-write a file that's been edited
<smile>, and that takes noticeable time with huge files.
http://home.epix.net/~artnpeg