That makes sense. I'm solely going off of user comments for SSDs, as I know no one who has upgraded to them as of yet. The problems I've been seeing are with the lower capacity (30 GB) drives which can fill up rather quickly.
The industrial strength SSDs have 2x the space they report so they can do some tricks to speed things up. As near as I can tell, the Intel X25 drives are as good as they get, and it may be the ultimate thing to add to your system to get performance. Speaking of performance, I figured out a nifty trick today. Ubuntu has a ramdisk sort of feature built in, /dev/shm. You can copy files to it like it was a hard drive, but they actually exist in RAM. On a not-so-fast PC I use at work, I copied a 350M file to /dev/shm in 8 seconds the first time and .5 seconds each successive time. Linux cached the file on the first read in unused RAM as a disk cache, so the successive copies were cache to RAM disk. The tempfs ram disk in linux expands as you write to it, so it doesn't take anything until you use it, and if your system needs memory to run apps, the tempfs files are written to swap. Ideal. So I found you can point your firefox browser cache at /dev/shm. Type about:config in the address bar and then find or add a string key of browser.cache.disk.parent_directory and set it to /dev/shm. I did this and sure enough, a Cache/ folder appeared in /dev/shm after restarting firefox and it flies. http://apple.com took 2.5 seconds to load for me the 1st time, and out of RAM cache, it loads in .7 seconds. I found a ramdisk for free download for XP using google and installed it as R: (a 30M size is enough). Did the same trick, and it makes windows fly too. So I'm thinking of making heavy use of /dev/shm if I get an SSD. Put my log files and /tmp there so the SSD isn't so busy writing little things all the time. The downside is those things go away if you don't periodically copy them back to the SSD. For browser cache, who cares? For log files, you probably do care, but it's less wear on the drive to do a copy once per half hour than to do all those little writes...
That is nice, definitely sounds like something I should use on my netbook. In related news, I can't wait until they bring the dual-core Atom chips over here, dying to purchase one of those (for a netbook again) and drop in an SSD.
If you google a bit, you might find a page or two about how you can boot XP entirely from a ramdisk on one of those netbooks. Personally, I have a tablet laptop that's quite portable and all, but the screen is too tiny for the kind of work I do.