Tagged Questions
The polling tag has no wiki summary.
42
votes
9answers
12k views
FileSystemWatcher vs Polling to watch for changes
I need to setup an application that watches for files being created in a folder (locally or on a network drive) and I was wondering if anyone has any thoughts on whether the FileSystemWatcher or ...
20
votes
7answers
10k views
Python Comet Server
I am building a web application that has a real-time feed (similar to Facebook's newsfeed) that I want to update via a long-polling mechanism. I understand that with Python, my choices are pretty much ...
19
votes
15answers
2k views
What is wrong with polling?
I have heard a few developers recently say that they are simply polling stuff (databases, files, etc.) to determine when something has changed and then run a task, such as an import.
I'm really ...
17
votes
3answers
7k views
jQuery AJAX polling for JSON response, handling based on AJAX result or JSON content
I'm a novice-to-intermediate JavaScript/jQuery programmer, so concrete/executable examples would be very much appreciated.
My project requires using AJAX to poll a URL that returns JSON containing ...
9
votes
1answer
643 views
out of this world Comet programming and a web-based chat
Current Project Setup
I've been working on a web-based chat, similar to Facebook chat. At the current state, I listen for incoming chats and check for new messages in an existing chat is by doing...
...
9
votes
5answers
7k views
Why are touch events destroying my Android framerate?
I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen.
While they're touching it, onTouchEvent is called ...
7
votes
3answers
330 views
How does facebook push data to news feed?
I am curious as to how Facebook pushes data to the browser as in the news feed. New data shows up at the top of the feed without reloading the page or clicking a button
Does Facebook achieve this by ...
7
votes
5answers
588 views
Good C#.NET Solution to manage frequent database polling
I am currently working on a c# .NET desktop application that will be communicating to a database over the internet via WCF and WCF Data Services. There will be many spots in the application that may ...
7
votes
3answers
378 views
What is the best Design/Way to keep user connected?
Am working on a POC for self learning in which I want to keep my user connected in LIVE pattern. For example, A game in which 4 user can play at a time , here I need to keep this user connected to ...
7
votes
2answers
3k views
Server polling with JavaScript
What is best practise for polling server with JavaScript for application that needs to refresh data very rapidly? I'm using jQuery for front-end and Java Spring Framework for backend.
Example of ...
7
votes
7answers
513 views
Is it better to poll or wait?
I have seen a question on why "polling is bad", but I am wonderring, in terms of minimizing the amount of processor time used by one thread, would it be better to do a spin wait (i.e. poll for a ...
6
votes
3answers
82 views
How should I poll a large number of files for changes?
I'd like to poll the file system for any changed, added or removed files or sub-directories. All changes should be detected quickly but without putting pressure on the machine. The OS is Windows >= ...
6
votes
3answers
138 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
3answers
132 views
Implementing a live voting system
I'm looking at implementing a live voting system on my website. The website provides a live stream, and I'd like to be able to prompt viewers to select an answer during a vote initiated by the caster. ...
6
votes
3answers
1k views
What is a RESTful way of monitoring a REST resource for changes?
If there is a REST resource that I want to monitor for changes or modifications from other clients, what is the best (and most RESTful) way of doing so?
One idea I've had for doing so is by providing ...
5
votes
2answers
157 views
Website architecture design requiring real-time polling from external servers
I have a game running in N ec2 servers, each with its own players inside (lets assume it a self-contained game inside each server).
What is the best way to develop a frontend for this game allowing ...
5
votes
3answers
256 views
Detect If Browser Tab Has Focus
Is there a reliable cross-browser way to detect that a tab has focus.
The scenario is that we have an application that polls regularly for stock prices, and if the page doesn't have focus we could ...
5
votes
2answers
453 views
C# Check if socket is disconnected?
How can you check if a non-blocking socket is disconnect without using Poll?
5
votes
3answers
958 views
I'm in MVVM ViewModel hell
So far, I am really happy with the way things have gone in my app's transition from typical click event handlers everywhere, to complete GUI decoupling. Now I'm running into something I can't quite ...
5
votes
3answers
171 views
Website Monitoring Libraries
There has been some talk of Website performance monitoring tools and services on stackoverflow, however, they seem fairly expensive for what they actually do. Are there any good opensource libraries ...
4
votes
3answers
184 views
Android - Sockets vs Polling
As part of an Android app I'm developing there is a chat room feature. We have a server which can process the incoming messages and store the messages. Is it better to keep a socket connection open ...
4
votes
2answers
1k views
Polling a Collection with Backbone.js
I’m trying to keep a Backbone.js Collection up-to-date with what’s happening on the server.
My code is similar to the following:
var Comment = Backbone.Model.extend({});
var CommentCollection = ...
4
votes
2answers
604 views
Android: connectivity issues in background thread after alarm when “always-on” turned off
Problem description:
In my android App, I experience connectitity issues when doing a remote HTTP
("polling") call from an AsyncTask that was started after an alarm went off.
The lookup works very ...
4
votes
2answers
293 views
Indicate to an ajax process that the delayed job has completed
I have a Rails 3 app that uses delayed_job to fetch some data (with a class method) when the user hits the page.
How can I indicate to the ajax process that the class method has run (so that I can ...
4
votes
5answers
2k views
What's the best way to ping many network devices in parallel?
I poll a lot of devices in network (more than 300) by iterative ping.
The program polls the devices sequentially, so it's slow.
I'd like to enhance the speed of polling.
There some ways to do this ...
4
votes
2answers
566 views
Polling, Comet, WebSockets, etc
I'm needing to build in some pretty agressive "auto refresh" capabilities into a web application. It's kind of a photo gallery and the images are stored on AmazonS3 but the data about the images are ...
4
votes
1answer
321 views
How does polling a file for changes work?
The problem
I expected the script below to print at most one event and then stop (it's written only to illustrate the problem).
#!/usr/bin/env python
from select import poll, POLLIN
filename = ...
4
votes
1answer
383 views
StreamedResponse with Silverlight 4 polling duplex not sending updates
I'm trying to enable a streamed response using Silverlight 4 and polling duplex, but I'm getting strange behaviour when the rate at which updates are sent to the client is greater than the ...
4
votes
3answers
112 views
How to poll simple website for updates?
I have a professor who randomly updates his website with homework due tomorrow and seems to expect us to check it every hour.
This sounds like a job for a program.
His website is simple and entirely ...
4
votes
7answers
699 views
What's the fastest way to poll a MySQL table for new rows?
My application needs to poll a MySQL database for new rows. Every time new rows are added, they should be retrieved. I was thinking of creating a trigger to place references to new rows on a separate ...
4
votes
3answers
674 views
Concurrent AJAX interval polling
Aside from the obvious heavy load on the server, is it bad to have several concurrent AJAX polls going on at the same time? Or is there even a limit as to what a browser/server can handle?
Example ...
4
votes
4answers
2k views
polling a HTTP server from J2ME client
I have a J2ME app running on my mobile phone(client),
I would like to open an HTTP connection with the server and keep polling for updated information on the server.
Every poll performed will use ...
4
votes
3answers
363 views
To poll or not to poll (in a web services context)
We can use polling to find out about updates from some source, for example, clients connected to a webserver. WCF provides a nifty feature in the way of Duplex contracts, in which, I can maintain a ...
4
votes
5answers
3k views
Using select/poll/kqueue/kevent to watch a directory for new files
In my app I need to watch a directory for new files. The amount of traffic is very large and there are going to be a minimum of hundreds of new files per second appearing. Currently I'm using a busy ...
3
votes
1answer
87 views
I can't understand polling/select in python
I'm doing some threaded asynchronous networking experiment in python, using UDP.
I'd like to understand polling and the select python module, I've never used them in C/C++.
What are those for ? I ...
3
votes
1answer
57 views
How do I start and stop javascript-initiated queries in my Rails app?
I have an app that needs to periodically update a "news" area of the screen as long as my Publisher object has news. When there is no news, that area of the screen is hidden (or simply not rendered), ...
3
votes
5answers
163 views
Best practice to detect two simultaneous signals on two input pins
I need to do the following: I have 2 input pins on a microcontroller, and it is possible, that a signal is received on one or the other, but it is also possible that the two will be physically ...
3
votes
3answers
701 views
When will FireFox support websockets?
I know that it's possible to enable websocket support in FireFox, but does anyone know when they will fully support it? Using a websocket is so much nicer than using AJAX polling >.<
3
votes
1answer
85 views
Is there a way for MySQL to wait for rows matching a condition to be inserted
Let's say i was writing an aplication where'd i'd need to get notifications in real time from a server, and let's say those notifications are stored on a mysql database.
For me to get them i'd have ...
3
votes
3answers
140 views
jquery onscreen run offscreen pause
Is there a way to pause a long polling script when someone leaves a page up but is not viewing it? So if I have multiple tabs or windows of the app open only the one I am actively viewing would have ...
3
votes
1answer
189 views
Hudson SCM Polling Thread hungs while polling
We use Hudson for our continuose build environment. For some reason, the thread for SCM Polling hungs somethimes after a while. I've experiemented a lot with the settings, but nothing seems to really ...
3
votes
4answers
239 views
Correct way to poll a webservice in an IPhone app
I am trying to determine the best strategy to poll a webservice once a minute, parse the xml returned and then update an object stored in a shared instance. This process needs to run in a separate ...
3
votes
2answers
404 views
Reliable way of monitoring file changes in a directory using the .NET framework
I'm looking for a reliable way of looking for changes in a directory.
I have tried using the FileSystemWatcher, but it's rather inaccurate when many small files are created, changed or deleted. It ...
3
votes
2answers
116 views
image polling through javascript
I need to poll an image using javascript and need to perform an action once the image is found at its position. This is the code I have written for this task.
/*----Image handling script starts ...
3
votes
2answers
368 views
Silverlight Polling Duplex with HTTPS
Is it possible to have Silverlight Polling Duplex WCF working with HTTPS?
3
votes
3answers
1k views
Comet VS Ajax polling
I need to create a chat like facebook chat.
With Comet I need more memory to keep the connection.
With Ajax polling there is a latency problem if I send request every 3-4 seconds.
So... If the ...
3
votes
4answers
583 views
Ajax/PHP - should I use one long running script or polling?
I have a PHP script that is kicked off via ajax. This PHP script uses exec() to run a separate PHP script via the shell.
The script that is called via exec() may take 30 seconds or so to complete. ...
3
votes
4answers
136 views
C++ Storing variables and inheritance
Here is my situation:
I have an event driven system, where all my handlers are derived from IHandler class, and implement an onEvent(const Event &event) method. Now, Event is a base class for all ...
3
votes
1answer
405 views
Polling versus socket servers for online Flash games
I want to make an online flash game, it will have social features but the gameplay will be primarily single-player. For example, no two players will appear on the screen at once, the social ...
3
votes
2answers
450 views
Asynchronous I/O on Mac OS X
Meaning the C10K problem, what is the best way to do asynch I/O on Mac OS X (assume to use on Mac and iPhone/iPad)?
On Linux our choice is epoll, on Windows is I/O Completion Ports.
Top priority is ...