PHP long polling, without excessive database acces

2020-02-28 17:37发布

I've always enjoyed the idea of long polling; on my development server I've played with various notification / new post systems, each using javascript to hold a connection and 'wait' for some sort of response. I've always had an issue with many implementations of this, they all involve repetitively polling the mySQL server to check for new rows.

A dedicated server for long polling requests is a possibility, but it seems very wasteful to continuously poll (around ever 3 seconds seems common) a database server for every client. Its a huge waste of resources for something that is relatively insignificant.

Is there a batter way?

标签: php
6条回答
相关推荐>>
2楼-- · 2020-02-28 18:26

I would use some nosql to notify there is new data. Redis has pub/sub and a blocking list.

You can also use, for example, memcache and create a new key when the data is available.

查看更多
Evening l夕情丶
3楼-- · 2020-02-28 18:28

If your specific problem is that you're trying to avoid notifying events through a database, you should probably be looking at using shared memory or semaphores.

Instead of continuously polling the database, you would instead monitor the shared memory. When something writes to the db (I'm assuming some sort of message queue), you can flag the event via the shared memory. The listening code would detected this, and only then establish a db connection to retrieve the message. Alternatively, you could use shared memory to entirely replace the use of the database.

The reference for the php semaphore and shared memory functions is here - http://uk.php.net/manual/en/ref.sem.php

查看更多
▲ chillily
4楼-- · 2020-02-28 18:30

WebSockets

...

When it's actually fully supported ;)

查看更多
我欲成王,谁敢阻挡
5楼-- · 2020-02-28 18:30

Can look into having a flash movie in the background that maintains a continuous connection with the server using sockets. Java also supports sockets so can also be a java applet embedded in your page.

查看更多
贼婆χ
6楼-- · 2020-02-28 18:38

Whenever you Insert or update your database create a cache for that field of the database. You can use any simple PHP based cache (http://hycus.com/2011/03/31/hcache-a-cache-system-for-php/).

Then you can poll that cache continuously using JQUERY.

查看更多
7楼-- · 2020-02-28 18:39

data cache, I like the one from Zend Server, it dramatically reduced pulling from database

查看更多
登录 后发表回答