EXPLAIN: cost


oscon=>  explain select oid from pg_proc;
                        QUERY PLAN                         
-----------------------------------------------------------
 Seq Scan on pg_proc  (cost=0.00..72.92 rows=1492 width=4)

Cost parameters

Parameter Description Default vs. page read
  page read   Cost to read fetch one page of data, by definition     1.00     -  
  cpu_tuple_cost   Cost of typical CPU time to process a tuple   0.01     100x quicker  
  cpu_index_tuple_cost     Cost of typical CPU time to process an index tuple   0.001     1000x quicker  
  cpu_operator_cost   Cost of CPU time to process a typical WHERE operator     0.0025     400x quicker  
  random_page_cost   Cost of a non-sequential page fetch   4     4x slower  
  effective_cache_size   Amount of cache = likelihood of finding a page in cache   1000     N/A  

Previous: EXPLAIN: rows         [Table of Contents]         Next: EXPLAIN ANALYZE