Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
函数之间有什么区别:pg_cancel_backend(pid int) 和 pg_terminate_backend(pid int)?对我来说,它们的工作方式几乎相同。
pg_cancel_backend() 取消正在运行的查询,而 pg_terminate_backend() 终止整个进程,从而终止数据库连接。
当程序创建数据库连接并发送查询时,您可以取消一个查询,而不会破坏连接并停止其他查询。如果你破坏整个连接,一切都会停止。