1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#Les commentaires sont les valeurs par default
listen_addresses = '*'
port = 5432
max_connections = 20 #100
shared_buffers = 256MB #32MB
temp_buffers = 64MB # 8MB
work_mem = 8MB # 1MB
maintenance_work_mem = 128MB #16MB
max_stack_depth = 16MB #2MB
max_fsm_pages = 1430176 # 1000 (ou 204800 je ne sais plus)
effective_cache_size = 800MB #128MB
log_destination = 'stderr'
redirect_stderr = on
log_rotation_age = 2d #1d
log_min_duration_statement = 0 # -1
silent_mode = on
log_line_prefix='%t'
stats_command_string = on
update_process_title = on
stats_start_collector = on
stats_block_level = on #off
stats_row_level = on #off
log_statement_stats = on #off
autovacuum = on #off
autovacuum_naptime = 120min
datestyle = 'iso, mdy'
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C' |
Partager