diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-03-27 15:36:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-03-27 15:36:40 +0000 |
commit | d3afd6805167b4a3f207205bae09fd7bfb44700a (patch) | |
tree | dbaac904dd41ad35d6837591b527f1b6250c50ba | |
parent | b8f856512e9e89a067a4588ba8edac38ad3f2d8a (diff) | |
download | postgresql-d3afd6805167b4a3f207205bae09fd7bfb44700a.tar.gz postgresql-d3afd6805167b4a3f207205bae09fd7bfb44700a.zip |
Add:
>
> * Allow configuration of backend priorities via the operating system
>
> Though backend priorities make priority inversion during lock
> waits possible, research shows that this is not a huge problem.
> http://archives.postgresql.org/pgsql-general/2007-02/msg00493.php
-rw-r--r-- | doc/TODO | 8 | ||||
-rw-r--r-- | doc/src/FAQ/TODO.html | 7 |
2 files changed, 13 insertions, 2 deletions
@@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (bruce@momjian.us) -Last updated: Mon Mar 26 19:48:38 EDT 2007 +Last updated: Tue Mar 27 11:36:10 EDT 2007 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -1427,6 +1427,12 @@ Miscellaneous Performance http://archives.postgresql.org/pgsql-hackers/2007-02/msg00213.php +* Allow configuration of backend priorities via the operating system + + Though backend priorities make priority inversion during lock + waits possible, research shows that this is not a huge problem. + http://archives.postgresql.org/pgsql-general/2007-02/msg00493.php + Source Code diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index d4af524b728..8df9cac3b61 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@ <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <h1><a name="section_1">PostgreSQL TODO List</a></h1> <p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/> -Last updated: Mon Mar 26 19:48:38 EDT 2007 +Last updated: Tue Mar 27 11:36:10 EDT 2007 </p> <p>The most recent version of this document can be viewed at<br/> <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>. @@ -1268,6 +1268,11 @@ first. There is also a developer's wiki at<br/> </li><li>Allow user configuration of TOAST thresholds <p> <a href="http://archives.postgresql.org/pgsql-hackers/2007-02/msg00213.php">http://archives.postgresql.org/pgsql-hackers/2007-02/msg00213.php</a> </p> + </li><li>Allow configuration of backend priorities via the operating system +<p> Though backend priorities make priority inversion during lock + waits possible, research shows that this is not a huge problem. + <a href="http://archives.postgresql.org/pgsql-general/2007-02/msg00493.php">http://archives.postgresql.org/pgsql-general/2007-02/msg00493.php</a> +</p> </li></ul> <h1><a name="section_21">Source Code</a></h1> |