Why are you writting on MC for that? if it's a timer diff against a certain date, just store in MC this:
<script type="text/javascript"> var d = new Date(); document.write(finalTime - d.getTime()/1000) </script> That will be the seconds pending for the finalTime. replace finalTime with the unix timestamp of your choice. Or even better, avoid the browser having to fetch the counter each second. Probably that's your problem right now (network latency could be greater than 1 sec), and just calculate the counter changes in javascript!!! Definitely this is not the use case for memcache... -- Guille -ℬḭṩḩø- <[email protected]> :wq -- To unsubscribe, reply using "remove me" as the subject.
