PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

LISTEN timeout della query con node-postgres?

Ho ricevuto la risposta al mio problema sul repository node-postgres. Per citare Brianc:

Il modo corretto di ascoltare in questo caso è utilizzare un client autonomo:

var pg = require ('pg'),
    pgConnectionString = "postgres://user:[email protected]/db";

var client = new pg.Client(pgConnectionString);
client.connect();
client.query('LISTEN "article_watcher"');
client.on('notification', function(data) {
    console.log(data.payload);
});