我想开发像facebook这样的dinamic neews feed。如果在数据库中插入新记录,则所有人都将显示新记录。
我想问你,我应该使用setTimeout来从数据库中获取最后一个被引用的id?
function(){
// loop on itself only if there are sockets still connected
if(connectionsArray.length) {
pollingTimer = setTimeout( pollingLoop, POLLING_INTERVAL );
updateSockets({users:users});
}
});
还有其他方式喜欢监听数据库事务,因为这需要很多服务器带宽吗?如果你可以帮助我,我会很高兴吗?