From 258ca24986a7a1a87c8f6c202ff4088528137961 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 15 Nov 2012 12:04:49 +0000 Subject: [PATCH] Docs title and mission uniformed with the README Also reduced excessive left padding in Contents box. --- doc/pg_repack.rst | 18 +++++++++++------- doc/style.css | 4 +++- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/doc/pg_repack.rst b/doc/pg_repack.rst index b89c71b..3c4b4e6 100644 --- a/doc/pg_repack.rst +++ b/doc/pg_repack.rst @@ -1,14 +1,16 @@ -pg_repack -- Reorganize tables in PostgreSQL databases without any locks -======================================================================== +pg_repack -- Reorganize tables in PostgreSQL databases with minimal locks +========================================================================= .. contents:: :depth: 1 :backlinks: none - -pg_repack_ is an utility program to reorganize tables in PostgreSQL databases. -Unlike clusterdb_, it doesn't block any selections and updates during -reorganization. +pg_repack_ is a PostgreSQL extension which lets you remove bloat from +tables and indexes, and optionally restore the physical order of clustered +indexes. Unlike CLUSTER_ and `VACUUM FULL`_ it works online, without +holding an exclusive lock on the processed tables during processing. +pg_repack is efficient to boot, with performance comparable to using +CLUSTER directly. pg_repack is a fork of the previous pg_reorg_ project. Please check the `project page`_ for bug report and development information. @@ -26,8 +28,10 @@ NOTICE: NOT NULL column. .. _pg_repack: http://reorg.github.com/pg_repack +.. _CLUSTER: http://www.postgresql.org/docs/current/static/sql-cluster.html +.. _VACUUM FULL: VACUUM_ +.. _VACUUM: http://www.postgresql.org/docs/current/static/sql-vacuum.html .. _project page: https://github.com/reorg/pg_repack -.. _clusterdb: http://www.postgresql.org/docs/current/static/app-clusterdb.html .. _pg_reorg: http://reorg.projects.pgfoundry.org/ diff --git a/doc/style.css b/doc/style.css index 2d5fe0d..9049c1e 100644 --- a/doc/style.css +++ b/doc/style.css @@ -50,4 +50,6 @@ div.contents { margin-top: 2.5em !important; } - +div.contents ul { + padding-left: 1em; +}