PostgreSQL学习第十四篇 listen与notify

来源:互联网 发布:个人收支软件app 编辑:程序博客网 时间:2024/06/09 21:56
PostgreSQL提供了client端之间通过服务器端进行消息通信的机制。这种机制是通过listen和notify命令来完成的。session1:postgres=# listen postgres;LISTENpostgres=# listen limingpostgres-# ;LISTENsession2:postgres=# notify postgres,'hello word';NOTIFYpostgres=# notify liming,'hello liming';NOTIFYpostgres=#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已注册了哪些消息监听

0 0
原创粉丝点击