i want to count the visits to each page in the site and detect who is online
my solution
table for all sessions of visitors
-----------------------------------------------
|id | sessionid | last_active | member_id | ip|
-----------------------------------------------
the member_id is -1 for none members and the member id for mebers
another table for each click for unique sessionid
----------------------------------
|id | sessionid | url| visit_date|
----------------------------------
and the total site visitors is the sessions table rows count and each page visits count is the number of rows where the url of this page
- the url may has problem if we do an operation on the page [adding comments ...] the url will change and new visit is inserted !!! shall i use the id of page?
- after years for a common website the sessions table will be crowded what can we do? shall we clean it periodically but what will happen to the total count or its not important? also the visits table will be crowded will this effect the performance? what else can i do?
OK this is my solution and my questions what is your suggestions and improvements? and thanks for reading to the end