微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PostgreSQL学习第十四篇 listen与notify

Postgresql提供了client端之间通过服务器端进行消息通信的机制。这种机制是通过listen和notify命令来完成的。

session1:
postgres=# listen postgres;
LISTEN
postgres=# listen liming
postgres-# ;
LISTEN

session2:
postgres=# notify postgres,'hello word';
NOTIFY
postgres=# notify liming,'hello liming';
NOTIFY
postgres=#

session1;
postgres=# select 1;   --随便执行了一个命令
 ?column?
----------
        1
(1 row)

Asynchronous notification "postgres" with payload "hello word" received from server process with PID 12241.
Asynchronous notification "liming" with payload "hello liming" received from server process with PID 12241.
postgres=#  

listen和notify的相关命令:

	1. listen:监听消息通道
	2. unlisten:取消先前的监听
	3. notify:发送消息到消息通道中
	4. pg_notify():与notify命令功能相同
	5. pg_listening_channels():调用函数可以查询当前session已注册了哪些消息监听

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐