The idea would be to use a little javascript code in order to be automatically notified of your opponents move - gameknot does this and i'm sure that this little push would lessen unnecessary pulling considerablly hence a lighter load on the server. The main benefit to us redhotters however woulld be a more pleasant chessing experience. Let's all push for this!
I shut off the email, and just check my games page. Short cut right on my desktop.
I have it organized by date moves, so the last moves are at the top. That way I know who's moving.
I might be interested if this Java tool told you how much time is running off your late move games... with a link right to the game that is ticking away. How long ago someone made a move against you.... and tell you if you won a chess game or Clan challenge. There is lots of info I'd like and am to lazy to check!
P-
The solution isn't email notifications as this leads to be quite cumbersome if one is playing regularly. At the moment I am also checking "My Games" in order to check for moves. The javascript code works by checking automatically for the next move without the need for downloading a whole page. Lets say it does this repeatedly at short intervals and then pulls up the game in question. This eliminates the need for the player checking for his next move. Perhaps it's not quite push technology but at least it appears to be which is good enough.
Originally posted by stalebreadI find that approach quite usefull as well. While surfing on the Web get an alert that there is a move waiting ...
The solution isn't email notifications as this leads to be quite cumbersome if one is playing regularly. At the moment I am also checking "My Games" in order to check for moves. The javascript code works by checking automatically for the next move without the need for downloading a whole page. Lets say it does this repeatedly at short intervals and the ...[text shortened]... ove. Perhaps it's not quite push technology but at least it appears to be which is good enough.
There was the idea of a 'Red Hot Probe' in the Developers' Forum which could do that task(http://www.redhotpawn.com/board/showthread.php?id=5916&page=1).
But I think that project died away.
Gotti
I think this idea might result in more load . I'm not a javascript guy, but ...
Maybe your not downloading the entire page, but you are still doing db lookups. If someone has is waiting for moves in 50 games, then all those lookups are being done repeatedly.
Why should these lookups be done, if I'm lookng at one board for 10-15 minutes, figuring a move.
Also, how many people leave a 'my games' page open on a home machine when they go to work , or when they go to bed . All those needless lookups..
OK, just guessing here, can't quite remember how it works. The javascript mini program might shut itself off after it's first succesful lookup. And on the serverside a simple flag with game-id info would be set. (This would meen that for 1 or a 100 games the process is the same). As soon as this is detected the game is pulled up and you're off and running. Site developpers, if you read this let us know what you think.
I have always resisted this. DB load is always our main concern. Checking the state of a single game is very cheap though - so this may be possible - and a bit of JavaScript could back off and then stop overtime. Checking the state of all games is not going to happen though unless we have some serious CPU time spare...(which we don't)
-Russ