X-Original-To: pgsql-general-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.144]) by svr1.postgresql.org (Postfix) with ESMTP id 9C8C452A86 for ; Fri, 25 Feb 2005 14:52:54 +0000 (GMT) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 76917-08 for ; Fri, 25 Feb 2005 14:52:53 +0000 (GMT) Received: from mx5.net.nih.gov (mailfwd.nih.gov [165.112.130.36]) by svr1.postgresql.org (Postfix) with ESMTP id BE1D652A6D for ; Fri, 25 Feb 2005 14:52:49 +0000 (GMT) Received: from mx5.net.nih.gov (localhost [127.0.0.1]) by mx5.net.nih.gov (8.12.10/8.11.6) with ESMTP id j1PEr9iS019422 for ; Fri, 25 Feb 2005 09:53:10 -0500 Received: from [128.231.145.14] (holmes.nhgri.nih.gov [128.231.145.14]) by mx5.net.nih.gov (8.12.10/8.11.6) with ESMTP id j1PEr9QO019415; Fri, 25 Feb 2005 09:53:09 -0500 In-Reply-To: <421F3926.6090201@graciousstyle.com> References: <421F3926.6090201@graciousstyle.com> Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <0df3fd3f2c11d351f4b2e73419dc5667@mail.nih.gov> Content-Transfer-Encoding: 7bit Cc: postgresql-general mailing list From: Sean Davis Subject: Re: postgresql 8.0 advantages Date: Fri, 25 Feb 2005 09:53:09 -0500 To: schen@graciousstyle.com X-Mailer: Apple Mail (2.619.2) X-Virus-Scanned: by amavisd-new at hub.org X-Spam-Status: No, hits=0.009 tagged_above=0 required=5 tests=AWL X-Spam-Level: X-Archive-Number: 200502/1342 X-Sequence-Number: 74146 On Feb 25, 2005, at 9:41 AM, Si Chen wrote: > Hello. > > I read the PostgreSQL 8.0 "What's New" page > (http://www.postgresql.org/docs/whatsnew) and wasn't sure whether > version 8.0 is significantly faster, more scalability, or more stable > than versions 7.4? I remember big speed improvements between 7.3 and > 7.4. It seems the biggest advantage of version 8.0 is being able to > run in Windows. > Is that true? I like programming in perl and the new pl/perl adds a totally new dimension to databasing. For example, the dbi-link (http://pgfoundry.org/projects/dbi-link/) project allows you to create a schema within your database that mirrors another data source (any data sources available via perl DBI). You could have an XML file served from the web as a set of tables in one schema, a mysql database as a second schema, and a set of csv files in a directory as a third schema, all with views within Postgres that allow query, update, delete, etc. Other projects such as this are likely to spring up, I would imagine. Performance characteristics aside (which I will leave to others to comment about), I have found the pl/perl improvements well worth the switch. Sean