history.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:9k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <sect1>
  2.  <title>A Short History of <productname>Postgres</productname></title>
  3.  <para>
  4.   The Object-Relational Database Management System now known as 
  5.   <productname>PostgreSQL</productname> (and briefly called
  6.   <productname>Postgres95</productname>) is derived from the
  7.   <productname>Postgres</productname> package written at Berkeley.
  8.   With over a decade of
  9.   development behind it, <productname>PostgreSQL</productname> 
  10.   is the most advanced open-source database available anywhere,
  11.   offering multi-version concurrency control, supporting almost
  12.   all SQL constructs (including subselects, transactions, and
  13.   user-defined types and functions), and having a wide range of
  14.   language bindings available (including C, C++, Java, perl, tcl, and python).
  15.  </para>
  16.  <sect2>
  17.   <title>The Berkeley <productname>Postgres</productname> Project</title>
  18.   <para>
  19.    Implementation of the <productname>Postgres</productname> 
  20.    <acronym>DBMS</acronym> began in 1986.  The
  21.    initial  concepts  for  the  system  were  presented in
  22.    <xref endterm="STON86-full" linkend="STON86">
  23.    and the definition of the initial  data  model
  24.    appeared in 
  25.    <xref endterm="ROWE87-full" linkend="ROWE87">.
  26.    The design of the rule system at
  27.    that time was described in  
  28.    <xref endterm="STON87a-full" linkend="STON87a">.
  29.    The  rationale
  30.    and  architecture  of the storage manager were detailed in 
  31.    <xref endterm="STON87b-full" linkend="STON87b">.
  32.   </para>
  33.   <para>
  34.    <productname>Postgres</productname> has undergone  several  major  releases  since
  35.    then.   The  first "demoware" system became operational
  36.    in 1987 and was shown at the  1988  <acronym>ACM-SIGMOD</acronym>  
  37.    Conference.   We  released Version 1, described in 
  38.    <xref endterm="STON90a-full" linkend="STON90a">,
  39.    to a few external users in June 1989.  In response to a
  40.    critique  of  the  first rule system 
  41.    (<xref endterm="STON89-full" linkend="STON89">), 
  42.    the rule
  43.    system was  redesigned 
  44.    (<xref endterm="STON90b-full" linkend="STON90b">)
  45.    and  Version  2  was
  46.    released  in  June 1990 with the new rule system.  
  47.    Version 3 appeared in 1991 and added support for  multiple
  48.    storage  managers,  an  improved  query executor, and a
  49.    rewritten rewrite rule  system.   For  the  most  part,
  50.    releases  until <productname>Postgres95</productname> (see below)
  51.    focused on portability and reliability.
  52.   </para>
  53.   <para>
  54.    <productname>Postgres</productname> has been  used
  55.    to  implement  many  different
  56.    research and production applications.  These include: a
  57.    financial data analysis system, a  jet  engine  
  58.    performance   monitoring   package,   an   asteroid  tracking
  59.    database, a medical information database,  and  several
  60.    geographic information systems.  
  61.    <productname>Postgres</productname> has also been
  62.    used as an educational tool  at  several  universities.
  63.    Finally,  
  64.    <ulink url="http://www.illustra.com/">Illustra  Information  Technologies</ulink>
  65.    (since merged into
  66.    <ulink url="http://www.informix.com/">Informix</ulink>)
  67.    picked up
  68.    the code and commercialized it.
  69.    <productname>Postgres</productname>  became  the  primary  data  manager
  70.    for  the
  71.    <ulink url="http://www.sdsc.edu/0/Parts_Collabs/S2K/s2k_home.html">Sequoia 2000</ulink>
  72.    scientific computing project in late 1992.
  73.   </para>
  74.   <para>
  75.    The size of the  external  user  community
  76.    nearly  doubled  during  1993.   It became increasingly
  77.    obvious that maintenance of the prototype code and 
  78.    support  was  taking  up large amounts of time that should
  79.    have been devoted to database research.  In  an  effort
  80.    to  reduce  this support burden, the project officially
  81.    ended with Version 4.2.
  82.   </para>
  83.  </sect2>
  84.  <sect2>
  85.   <title><productname>Postgres95</productname></title>
  86.   <para>
  87.    In 1994,
  88.    <ulink url="mailto:ayu@informix.com">Andrew Yu</ulink>
  89.    and
  90.    <ulink url="http://http.cs.berkeley.edu/~jolly/">Jolly Chen</ulink>
  91.    added a SQL language interpreter to <productname>Postgres</productname>.
  92.    <productname>Postgres95</productname> was subsequently released to
  93.    the Web to find its own way in the world as a public-domain,
  94.    open source descendant of the original <productname>Postgres</productname>
  95.    Berkeley code.
  96.   </para>
  97.   <para>
  98.    <productname>Postgres95</productname> code was completely
  99.    ANSI C and trimmed in size by 25%. Many
  100.    internal changes improved performance and maintainability. 
  101.    <productname>Postgres95</productname> v1.0.x ran about  30-50%
  102.    faster  on  the  Wisconsin  Benchmark compared to 
  103.    <productname>Postgres</productname> v4.2.
  104.    Apart from bug fixes, these were the major enhancements:
  105.    <itemizedlist>
  106.     <listitem>
  107.      <para>
  108.       The query language <productname>Postquel</productname> was replaced with
  109.       <acronym>SQL</acronym> (implemented in the server).
  110.       Subqueries were not supported until
  111.       <productname>PostgreSQL</productname> (see below), but they
  112.       could be imitated in <productname>Postgres95</productname> with user-defined
  113.       <acronym>SQL</acronym> functions. Aggregates were
  114.       re-implemented.  Support for the GROUP BY query clause was also added.
  115.       The <filename>libpq</filename> interface remained
  116.       available  for  <acronym>C</acronym>  
  117.       programs.
  118.      </para>
  119.     </listitem>
  120.     <listitem>
  121.      <para>
  122.       In addition to the monitor program, a new program
  123.       (<application>psql</application>) was provided for interactive SQL queries
  124.       using <acronym>GNU</acronym> <filename>readline</filename>.
  125.      </para>
  126.     </listitem>
  127.     <listitem>
  128.      <para>
  129.       A new  front-end  library,  <filename>libpgtcl</filename>,
  130.       supported  <acronym>Tcl</acronym>-based  clients.   A sample shell, 
  131.       pgtclsh, provided new Tcl  commands  to  interface
  132.       <application>tcl</application>
  133.       programs with the <productname>Postgres95</productname> backend.
  134.      </para>
  135.     </listitem>
  136.     <listitem>
  137.      <para>
  138.       The  large  object interface was overhauled. The Inversion large objects were
  139.       the  only  mechanism for  storing  large objects.
  140.       (The Inversion file system was removed.)
  141.      </para>
  142.     </listitem>
  143.     <listitem>
  144.      <para>
  145.       The  instance-level  rule  system  was removed.
  146.       Rules were still available as rewrite rules.
  147.      </para>
  148.     </listitem>
  149.     <listitem>
  150.      <para>
  151.       A short tutorial introducing regular <acronym>SQL</acronym> features as
  152.       well as those of <productname>Postgres95</productname> was
  153.       distributed with the source code.
  154.      </para>
  155.     </listitem>
  156.     <listitem>
  157.      <para>
  158.       <acronym>GNU</acronym> make (instead of  <acronym>BSD</acronym>  make)  was  used
  159.       for  the build.  Also,  <productname>Postgres95</productname>  could  be
  160.       compiled with an unpatched <productname>gcc</productname>
  161.       (data alignment of  doubles  was fixed).
  162.      </para>
  163.     </listitem>
  164.    </itemizedlist>
  165.   </para>
  166.  </sect2>
  167.  <sect2>
  168.   <title><productname>PostgreSQL</productname></title>
  169.   <para>
  170.    By 1996, it became clear that the name <quote>Postgres95</quote> would
  171.    not stand the test of time. We chose a new name,
  172.    <productname>PostgreSQL</productname>, to reflect the relationship
  173.    between the original <productname>Postgres</productname> and the more
  174.    recent versions with <acronym>SQL</acronym> capability.  At the same
  175.    time, we set the version numbering to start at 6.0, putting the
  176.    numbers back into the sequence originally begun by the
  177.    <productname>Postgres</productname> Project.
  178.   </para>
  179.   <para>
  180.    The emphasis during development of <productname>Postgres95</productname>
  181.    was on identifying and understanding existing problems in the backend code.
  182.    With <productname>PostgreSQL</productname>, 
  183.    the emphasis has shifted to augmenting features and capabilities, although
  184.    work continues in all areas.
  185.   </para>
  186.   <para>
  187.    Major enhancements in <productname>PostgreSQL</productname> include:
  188.   </para>
  189.   <itemizedlist>
  190.    <listitem>
  191.     <para>
  192.      Table-level locking has been replaced with multi-version concurrency control,
  193.      which allows readers to continue reading consistent data during writer activity
  194.      and enables hot backups from pg_dump while the database stays available for
  195.      queries.
  196.     </para>
  197.    </listitem>
  198.    <listitem>
  199.     <para>
  200.      Important backend features, including subselects, defaults, 
  201.      constraints, and triggers, have been implemented.
  202.     </para>
  203.    </listitem>
  204.    <listitem>
  205.     <para>
  206.      Additional <acronym>SQL92</acronym>-compliant language features have been added,
  207.      including primary keys, quoted identifiers, literal string type coersion, 
  208.      type casting, and binary and hexadecimal integer input.
  209.     </para>
  210.    </listitem>
  211.    <listitem>
  212.     <para>
  213.      Built-in types have been improved, including new wide-range date/time types 
  214.      and additional geometric type support.
  215.     </para>
  216.    </listitem>
  217.    <listitem>
  218.     <para>
  219.      Overall backend code speed has been increased by approximately 20-40%, 
  220.      and backend startup time has decreased 80% since v6.0 was released.
  221.     </para>
  222.    </listitem>
  223.   </itemizedlist>
  224.  </sect2>
  225. </sect1>
  226. <!-- Keep this comment at the end of the file
  227. Local variables:
  228. mode: sgml
  229. sgml-omittag:nil
  230. sgml-shorttag:t
  231. sgml-minimize-attributes:nil
  232. sgml-always-quote-attributes:t
  233. sgml-indent-step:1
  234. sgml-indent-data:t
  235. sgml-parent-document:nil
  236. sgml-default-dtd-file:"./reference.ced"
  237. sgml-exposed-tags:nil
  238. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  239. sgml-local-ecat-files:nil
  240. End:
  241. -->