Skip to content

Commit 258ca24

Browse files
committed
Docs title and mission uniformed with the README
Also reduced excessive left padding in Contents box.
1 parent 292e008 commit 258ca24

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

doc/pg_repack.rst

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
pg_repack -- Reorganize tables in PostgreSQL databases without any locks
2-
========================================================================
1+
pg_repack -- Reorganize tables in PostgreSQL databases with minimal locks
2+
=========================================================================
33

44
.. contents::
55
:depth: 1
66
:backlinks: none
77

8-
9-
pg_repack_ is an utility program to reorganize tables in PostgreSQL databases.
10-
Unlike clusterdb_, it doesn't block any selections and updates during
11-
reorganization.
8+
pg_repack_ is a PostgreSQL extension which lets you remove bloat from
9+
tables and indexes, and optionally restore the physical order of clustered
10+
indexes. Unlike CLUSTER_ and `VACUUM FULL`_ it works online, without
11+
holding an exclusive lock on the processed tables during processing.
12+
pg_repack is efficient to boot, with performance comparable to using
13+
CLUSTER directly.
1214

1315
pg_repack is a fork of the previous pg_reorg_ project. Please check the
1416
`project page`_ for bug report and development information.
@@ -26,8 +28,10 @@ NOTICE:
2628
NOT NULL column.
2729

2830
.. _pg_repack: http://reorg.github.com/pg_repack
31+
.. _CLUSTER: http://www.postgresql.org/docs/current/static/sql-cluster.html
32+
.. _VACUUM FULL: VACUUM_
33+
.. _VACUUM: http://www.postgresql.org/docs/current/static/sql-vacuum.html
2934
.. _project page: https://github.com/reorg/pg_repack
30-
.. _clusterdb: http://www.postgresql.org/docs/current/static/app-clusterdb.html
3135
.. _pg_reorg: http://reorg.projects.pgfoundry.org/
3236

3337

doc/style.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,6 @@ div.contents {
5050
margin-top: 2.5em !important;
5151
}
5252

53-
53+
div.contents ul {
54+
padding-left: 1em;
55+
}

0 commit comments

Comments
 (0)