diff options
author | Bruce Momjian | 2004-04-19 21:30:18 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-04-19 21:30:18 +0000 |
commit | 1ad590541d3c22dd3357d2252c1be442a42b7fb4 (patch) | |
tree | c85bb85195ab0ae3e2f0a71c5511029856c77044 | |
parent | e60da4bcf611c5b60bbc9a5da339d8cb6a8b733e (diff) |
The attached patch for contrib/pg_autovacuum/README.pg_autovacuum fixes
one apparent error and makes a minor stylistic change that makes it more
consistent and makes clear something that confused me :-)
Andrew Dunstan
-rw-r--r-- | contrib/pg_autovacuum/README.pg_autovacuum | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/pg_autovacuum/README.pg_autovacuum b/contrib/pg_autovacuum/README.pg_autovacuum index 6a98f6882a9..764ae3f79fb 100644 --- a/contrib/pg_autovacuum/README.pg_autovacuum +++ b/contrib/pg_autovacuum/README.pg_autovacuum @@ -110,10 +110,10 @@ pg_autovacuum has the following optional arguments: -D daemonize: Detach from tty and run in background. -s sleep base value: see "Sleeping" below. -S sleep scaling factor: see "Sleeping" below. --v vacuum base threshold: see Vacuum and Analyze. --V vacuum scaling factor: see Vacuum and Analyze. --a analyze base threshold: see Vacuum and Analyze. --A analyze scaling factor: see Vacuum and Analyze. +-v vacuum base threshold: see "Vacuum and Analyze" below. +-V vacuum scaling factor: see "Vacuum and Analyze" below. +-a analyze base threshold: see "Vacuum and Analyze" below. +-A analyze scaling factor: see "Vacuum and Analyze" below. -L log file: Name of file to which output is submitted, otherwise STDERR -U username: Username pg_autovacuum will use to connect with, if not specified the current username is used. @@ -129,7 +129,7 @@ the time of writing they are: -v 1000 -V 2 -a 500 (half of -v if not specified) --A 1 (half of -v if not specified) +-A 1 (half of -V if not specified) -s 300 (5 minutes) -S 2 |