默认是100
这个连接上限应该跟机器的配置有关
但是具体有什么关系就不知道了
特来请教各位大神
相关问题
- Django distinct is not working
- PostgreSQL: left outer join syntax
- Connecting Python to a Heroku PostgreSQL DB?
- PostgreSQL - Deleting data that are older than an
- Does PLV8 support making http calls to other serve
--当前总共正在使用的连接数
postgres=# select count(1) from pg_stat_activity;
--显示系统允许的最大连接数
postgres=# show max_connections;
--显示系统保留的用户数
postgres=# show superuser_reserved_connections ;
--按照用户分组查看
select usename, count(*) from pg_stat_activity group by usename order by count(*) desc;