From owner-freebsd-hackers Tue Jan 10 04:57:33 1995 Return-Path: hackers-owner Received: (from root@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id EAA11291 for hackers-outgoing; Tue, 10 Jan 1995 04:57:33 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.1]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id EAA11285 for ; Tue, 10 Jan 1995 04:57:31 -0800 Received: from corbin.Root.COM (corbin.Root.COM [198.145.90.18]) by Root.COM (8.6.8/8.6.5) with ESMTP id EAA22755; Tue, 10 Jan 1995 04:57:26 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.9/8.6.5) with SMTP id EAA00220; Tue, 10 Jan 1995 04:57:26 -0800 Message-Id: <199501101257.EAA00220@corbin.Root.COM> X-Authentication-Warning: corbin.Root.COM: Host localhost didn't use HELO protocol To: SysAdmin - Ng Pheng Siong cc: hackers@FreeBSD.org Subject: Re: Filesystem(?) preformance - 1.x and 2.0 In-reply-to: Your message of "Tue, 10 Jan 95 19:58:21 +0800." <199501101201.EAA10332@freefall.cdrom.com> From: David Greenman Reply-To: davidg@Root.COM Date: Tue, 10 Jan 1995 04:57:24 -0800 Sender: hackers-owner@FreeBSD.org Precedence: bulk >Didn't see any response to a previous post, so I'll try again. Hopefully >someone can clue me in. > >I have 1.x unpatched-final-current and 2.0R (2.1.0 kernel supped on >4th/5th Dec) running on identical hardware alongside each other. > >Somehow, the 2.0 system feels slower. Iozone reports thusly: According to your iozone results, reads on 2.0 are twice as fast while writes are slightly slower. The specific problem regarding performance of 'man' is likely caused by differences in the way that the manual pages are stored. 2.0 stores the manual pages in gzip compressed nroff format to save space, while 1.x installed the manual pages in uncompressed 'cat' format. Also, the cat directories aren't part of the 2.0 distribution, so the system must uncompress and format the manual page every time 'man' is used on it. If you create 'cat' directories, the system will keep the uncompressed 'cat' format page around for future lookup. Hope this helps. -DG