For a web application I'm writing it's going to be key to measure at a frequent interval (every minute or so) how many visitors are in a specific part of my application right now. Say my application has 10 subsections that are switched between using JavaScript and made persistent using #!/page8 style hash tags. What would be the best way of doing this accurately?
My current plan is to just save the amount in a database, adding and subtracting every time an user clicks on the page or leaves the page. This doesn't really seem like a very good solution to me though. Events to track page leaves could be cancelled due to closing browsers, people could be screwing with the data by running the API calls for visiting/leaving etc. It would be a lot of work to get reliable.
Edit: To specify, my application won't have user accounts. Also I'm not just trying to log how many visitors my pages have had. I'm trying to accurately know how many visitors are on my page right now. Which means that I'll need some reliable method of knowing then a visitor is no longer on my page. That's where the problem lies. I just got a bright idea that I could have the JavaScript on their page notify my server every 10 seconds or so that they are still there, and have their visit be timed out and removed if they don't. Would that work? Couldn't this be a problem for my puny server if I were to get thousands of people using my app simultaneously?
Any thoughts?
I'm tagging this with a lot of common web development tags since it's a very open question and any of these tags could contain the answer