From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] Re: [sources] 20070410: % cat From: "Russ Cox" Date: Sat, 14 Apr 2007 10:51:53 -0400 In-Reply-To: <9f3897940704131439t56e781a2s7b2fb3497299c31e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20070414145128.A94011E8C26@holo.morphisms.net> Topicbox-Message-UUID: 47bfbd38-ead2-11e9-9d60-3106f5b1d025 > That's also thanks to improved filesystems. This isn't true. The savings are due to aggressive caching in the operating system, which cuts the file system out entirely. The disks are slow no matter how you use them. File I/O for things like Python and TeX is slower on Plan 9 because it has to go to the file server, which is in another process or another machine, rather than answer out of a kernel cache like Linux does. Lots of things get easier if you assume you are the only machine in the universe. See earlier discussion on caching read EODs. Russ