Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
5b801694
Commit
5b801694
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Break PERFORMANCE up into subsections.
parent
fdf881d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/TODO
+36
-23
36 additions, 23 deletions
doc/TODO
with
36 additions
and
23 deletions
doc/TODO
+
36
−
23
View file @
5b801694
TODO list for PostgreSQL
TODO list for PostgreSQL
========================
========================
Last updated: Tue Jan 22 15:
3
9:5
1
EST 2002
Last updated: Tue Jan 22 15:
4
9:5
4
EST 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -372,44 +372,57 @@ VACUUM
...
@@ -372,44 +372,57 @@ VACUUM
* -Allow ANALYZE to ESTIMATE based on certain random precentage of rows (Tom)
* -Allow ANALYZE to ESTIMATE based on certain random precentage of rows (Tom)
* Add LAZY VACUUM (Vadim) [performance]
* Add LAZY VACUUM (Vadim) [performance]
MISCELLANEOUS
LOCKING
* Make locking of shared data structures more fine-grained
* Add code to detect an SMP machine and handle spinlocks accordingly
* Research use of sched_yield() for spinlock acquisition failure
* -Improve spinlock code [performance] (Tom)
STARTUP TIME
* -Allow compression of log and meta data (Tom)
* Do async I/O for faster random read-ahead of data
* Experiment with multi-threaded backend [thread]
* Experiment with multi-threaded backend [thread]
* Get faster regex() code from Henry Spencer <henry@zoo.utoronto.ca>
when it is available
* Use mmap() rather than SYSV shared memory(?) [mmap]
* Use mmap() to write WAL files (?) [mmap]
* Improve Subplan list handling
* Allow Subplans to use efficient joins(hash, merge) with upper variable
* Improve dynamic memory allocation by introducing tuple-context memory
allocation (Tom)
* -Allow GUC configuration of maximum number of open files (Tom)
* -Improve statistics storage in pg_class [performance] (Tom)
* Add connection pooling [pool]
* Add connection pooling [pool]
* Allow persistent backends [persistent]
* Allow persistent backends [persistent]
* Create a transaction processor to aid in persistent connections and
* Create a transaction processor to aid in persistent connections and
connection pooling
connection pooling
* Allow logging of query durations
* Do listen() in postmaster and accept() in pre-forked backend
* Add hash for evaluating GROUP BY aggregates
* Have pre-forked backend pre-connect to last requested database or pass
* -Read pg_hba.conf only on postmaster startup or SIGHUP (Bruce)
file descriptor to backend pre-forked for matching database
WRITE-AHEAD LOG
* Have after-change WAL write()'s write only modified data to kernel
* Have after-change WAL write()'s write only modified data to kernel
* Reduce number of after-change WAL writes; they exist only to gaurd against
* Reduce number of after-change WAL writes; they exist only to gaurd against
partial page writes
partial page writes
* Turn off after-change writes if fsync is disabled (?)
* Turn off after-change writes if fsync is disabled (?)
* -Improve spinlock code [performance] (Tom)
* Do listen() in postmaster and accept() in pre-forked backend
OPTIMIZER/EXECUTOR
* Have pre-forked backend pre-connect to last requested database or pass
file descriptor to backend pre-forked for matching database
* Improve Subplan list handling
* Allow Subplans to use efficient joins(hash, merge) with upper variable
* Improve dynamic memory allocation by introducing tuple-context memory
allocation (Tom)
* Add hash for evaluating GROUP BY aggregates
* Nested FULL OUTER JOINs don't work (Tom)
* Nested FULL OUTER JOINs don't work (Tom)
* Allow merge and hash joins on expressions not just simple variables (Tom)
* Allow merge and hash joins on expressions not just simple variables (Tom)
* Add new pg_proc cachable settings to specify whether function can be
* Add new pg_proc cachable settings to specify whether function can be
evaluated only once or once per query
evaluated only once or once per query
* Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce)
* Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce)
* Make locking of shared data structures more fine-grained
* Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS [exists]
* Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS [exists]
* Add code to detect an SMP machine and handle spinlocks accordingly
MISCELLANEOUS
* -Allow compression of log and meta data (Tom)
* Do async I/O for faster random read-ahead of data
* Get faster regex() code from Henry Spencer <henry@zoo.utoronto.ca>
when it is available
* Use mmap() rather than SYSV shared memory or to write WAL files (?) [mmap]
* -Allow GUC configuration of maximum number of open files (Tom)
* -Improve statistics storage in pg_class [performance] (Tom)
* Allow logging of query durations
* -Read pg_hba.conf only on postmaster startup or SIGHUP (Bruce)
SOURCE CODE
SOURCE CODE
-----------
-----------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment