mirror of
https://github.com/penpot/penpot.git
synced 2025-01-07 15:39:42 -05:00
📎 Add better database configuration for devenv
This commit is contained in:
parent
d76baa3266
commit
ae9886080e
1 changed files with 7 additions and 5 deletions
|
@ -1,14 +1,17 @@
|
|||
listen_addresses = '*'
|
||||
max_connections = 100
|
||||
shared_buffers = 128MB
|
||||
temp_buffers = 8MB
|
||||
work_mem = 8MB
|
||||
max_connections = 50
|
||||
shared_buffers = 256MB
|
||||
temp_buffers = 18MB
|
||||
work_mem = 18MB
|
||||
|
||||
dynamic_shared_memory_type = posix
|
||||
synchronous_commit = off
|
||||
wal_writer_delay = 900ms
|
||||
max_wal_size = 1GB
|
||||
min_wal_size = 80MB
|
||||
full_page_writes = off
|
||||
min_wal_size=1GB
|
||||
max_wal_size=4GB
|
||||
|
||||
# log_min_duration_statement = 0
|
||||
log_timezone = 'Europe/Madrid'
|
||||
|
@ -19,4 +22,3 @@ lc_monetary = 'en_US.utf8'
|
|||
lc_numeric = 'en_US.utf8'
|
||||
lc_time = 'en_US.utf8'
|
||||
default_text_search_config = 'pg_catalog.english'
|
||||
|
||||
|
|
Loading…
Reference in a new issue