Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
9answers
3k views

How to implement a chat room using Jquery/PHP?

I'm looking to implement a chat room using PHP/Javascript (Jquery) with both group chat and private chat features. The problem is how to continually update the interface in a natural way and possibly ...
6
votes
3answers
139 views

AJAX Polling Question - Blocking Or Frequent?

I have a web application that relies on very "live" data - so it needs an update every 1 second if something has changed. I was wondering what the pros and cons of the following solutions are. ...
6
votes
4answers
1k views

How to Build Multiplayer Online Boardgames? What to Research?

I want to build a multiplayer online boardgame like monopoly using php, mysql. I want to run the game in the browser. Multiple people connect to the game, then each person takes turn rolling the die, ...
3
votes
4answers
890 views

Javascript Poll server. Will this cause a stack overflow?

I am not too familiar with the specifics of every javascript implementation on each browser. I do know however that using setTimeout, the method passed in gets called on a separate thread. So would ...
3
votes
1answer
508 views

User Presence In a chat room (chat getting updated by simple polling)

We have implemented a simple chat room feature in Rails using Simple Ajax updates. Now in every chat room a message belongs to particular user. We want to show the list of users(something like user ...
2
votes
1answer
118 views

How to poll for status on client side

I need to find out status of an object which can change at any time. Best case scenario is if the object changes the client side gets updated, however I don't think there is plumbing for pushing ...
2
votes
2answers
78 views

I want to execute a code in c# whenever a new row is inserted in the database

i am working on a chat application where the chat message from one client gets into the database and the other clients poll every 5 secs (using a timer) whether there is any new message or not, if ...
2
votes
1answer
1k views

close long poll connection, jQuery-ajax

Background I use a Tornado-like server with support for long-polls. Each web pages a user clicks around to sets up a long poll to the server like this: $.ajax({ type: 'GET', url: ...
1
vote
2answers
102 views

How to Use Long Polling or Ajax Push in your Website

I want to know how to use ajax push . i have learnt from various Web articles that Ajax push can be obtained by using few programmes like COMET, APE (AJAX PUSH ENGINE) etc.... But i want to know ...
1
vote
5answers
177 views

AJAX/PHP Why is HTTP-Polling so laggy?

Why is HTTP-Polling so laggy? What I have is a button, and whenever a user clicks it a MySQL database field gets updated and the value is displayed to the user. I'm polling every 800 milliseconds and ...
1
vote
2answers
418 views

jquery polling with smart poll plugin

I'm trying for the life of me to get this plugin to work but I'm not understanding the status function so retry is not firing. $.poll(10000, function(retry){ $.get('willfail', function(response, ...
1
vote
1answer
522 views

Long Ajax Request in Chrome Shows Waiting

In FF and IE, I make an Ajax request (Jquery Post) to my server. The requests calls a sql stored procedure which queries for 30 seconds before it returns data (or immediately if data is available). ...
1
vote
4answers
1k views

ajax: don't wait for response, but check for it periodically

I have a PHP process that takes a long time to run. I don't want the AJAX process that calls it to wait for it to finish. When the PHP process finishes it will set a field in a database. There should ...
1
vote
3answers
1k views

Trying to call a function every 3 minutes using javascript

I have a function that returns an integer (the current reputation score for a user on a community site). That number is often going up or down based on how their comments and submissions are voted ...
1
vote
2answers
738 views

Online users in Ruby on Rails

What is the simplest way how to check if user is online and display list of online users? The only way I can think of is some periodic polling server to update last action timestamp, and when last ...
0
votes
1answer
145 views

jQuery Mobile transitions and AJAX Polling on a MasterPage

I am trying to use AJAX polling with jQuery to update a span element on a razor MasterPage in ASP.NET MVC3. The page uses the jQuery Mobile 1.0 framework that adorns simple view changes (like ...
0
votes
1answer
28 views

Polling with Javascript, but in different time intervals

I am using polling with Javascript to get some information with ajax but in exact the same time intervals. intervalRequestId = setInterval('loadInfo()', 2500); Because I know now, that the ...
0
votes
1answer
70 views

How can I publish a message to all Javascript subscribers for a channel using CometD?

Given a Java web application using CometD, how can I publish a message to all of a channel's subscribers each time a message is processed by bayeux? For testing, I used ...
0
votes
1answer
43 views

AJAX Polling in an API for commercial use

Currently I'm developing an API that uses AJAX interval polling, it polls at 900bytes every 1.5 minutes, does not seem to put a heavy load on MySQL and is only one AJAX stream. I plan on upgrading to ...
0
votes
0answers
32 views

AJAX polling getting max_user_connections and the application go buzy

I have an application that need to do ajax requests per each 5sec. I have a shared host and when my app comes around 350 users my max_user_connections get full and the application get very slow. This ...
0
votes
2answers
381 views

An ExtJS panel/tree/something else that polls

All I want is to display a list of records from a database table that are always up-to-date. My initial thought was to have a constant ajax call every x seconds checking for updates, but wasnt sure ...
0
votes
1answer
271 views

How best to implement the polling consumer pattern in JavaScript

Background Back in May I reported an issue on WebKit regarding a memory retention issue. It looks as though the problem could be due to the Web Inspector itself, but I'm not convinced yet. Problem ...
0
votes
1answer
67 views

how to trigger an event whenever a tweet is updated

I wanted to know how to trigger an event (say. storing a tweet from a particular user in a text file or mailing it etc.) when a particular user updates his tweets. Do we need to poll for the updates ...
0
votes
2answers
193 views

how to detect incoming chat message?

I'm using PHP, AJAX, a MySQL database, and a lot of jQuery to prototype web-based chat system (similar to Facebook Chat). I'm stuck on how to "listen" for incoming chats... when to know someone is ...
0
votes
1answer
242 views

jQuery: pass different data to periodicalupdater each time?

On my setup, the ids of all entries will be fetched (e.g. assigned to variable ids=2,5,7,9,11) and passed to periodicalupdater to send to a php script. The problem is that the list of ids change over ...