File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.60 2006/06/05 02:49:58 tgl Exp $ -->
1
+ <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.61 2006/06/05 03:03:42 tgl Exp $ -->
2
2
3
3
<chapter Id="runtime-config">
4
4
<title>Server Configuration</title>
@@ -1831,7 +1831,7 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows
1831
1831
<para>
1832
1832
Sets the planner's estimate of the cost of processing
1833
1833
each index entry during an index scan.
1834
- The default is 0.001 .
1834
+ The default is 0.005 .
1835
1835
</para>
1836
1836
</listitem>
1837
1837
</varlistentry>
Original file line number Diff line number Diff line change 178
178
#seq_page_cost = 1.0 # measured on an arbitrary scale
179
179
#random_page_cost = 4.0 # same scale as above
180
180
#cpu_tuple_cost = 0.01 # same scale as above
181
- #cpu_index_tuple_cost = 0.001 # same scale as above
181
+ #cpu_index_tuple_cost = 0.005 # same scale as above
182
182
#cpu_operator_cost = 0.0025 # same scale as above
183
183
#effective_cache_size = 1000 # typically 8KB each
184
184
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/optimizer/cost.h,v 1.74 2006/06/05 02:49:58 tgl Exp $
10
+ * $PostgreSQL: pgsql/src/include/optimizer/cost.h,v 1.75 2006/06/05 03:03:42 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
24
24
#define DEFAULT_SEQ_PAGE_COST 1.0
25
25
#define DEFAULT_RANDOM_PAGE_COST 4.0
26
26
#define DEFAULT_CPU_TUPLE_COST 0.01
27
- #define DEFAULT_CPU_INDEX_TUPLE_COST 0.001
27
+ #define DEFAULT_CPU_INDEX_TUPLE_COST 0.005
28
28
#define DEFAULT_CPU_OPERATOR_COST 0.0025
29
29
30
30
#define DEFAULT_EFFECTIVE_CACHE_SIZE 1000.0 /* measured in pages */
You can’t perform that action at this time.
0 commit comments