I want to implement a chat application but I don't want to use timeout because it checks every few seconds. Is there any other method to do this?
|
You can use ajax to call to a php page that will hang until there is something new and then it sends that to the client, and after the ajax uses what it got, it can make another request to that page, that will hang again. This way you trade the requests to the server for server processing time. You can use usleep, and a while loop to keep the page alive, and don't forget to set the execution time limit of page. EDIT 1: Well, I will suppose that you have a function to send data (I will call it And another function The initial request will be done with What is important is the php code. If you are working in a linux environment you can use a lot of things like os signals, but in general we can use while, and usleep, so that we do not kill the server. and now:
Now, you first call And do not forget to use I might be a bit off, and need to review this code, but this is the main idea. |
|||||||||
|
|
Well, any method requires something to check a database every few seconds or however long the increment you want. |
|||
|
|
Similar questions has been up several times before. I posted this answer a couple of days ago, that suggest either Websocket or Node.js. Maybe that can get you started. |
|||
|
|
setTimeout()? Also, have you begun writing some part of the application? – zrvan Dec 22 '11 at 7:46