"store_config": {
"uid_key": "",
"use_adapter": "postgres",
"adapters": {
"postgres": {
"User": "rds_user_database_for_connection",
"Passwd": "password to db",
"Host": "rds_host",
"Port": "5432",
"DBName": "db_for_chat",
// PostgreSQL connection pool settings.
// Maximum number of open connections to the database. Zero means unlimited.
"max_open_conns": 64,
// Maximum number of connections in the idle connection pool. Zero means no idle connections are retained.
"max_idle_conns": 64,
// Maximum amount of time a connection may be reused. Zero means unlimited.
"conn_max_lifetime": 60,
// Maximum amount of time waiting for a connection from the pool. Zero means no timeout.
"sql_timeout": 10
}
}
},