|
|
|
|
|
by idk1
1423 days ago
|
|
I accidentally ended up at a similar solution once. I has the same issue, and I fixed it by adding an associated 'count_table' row for each hit, and deleting the row once it had been added later on to the final count. Which actually fixed the issue. Then refactored it so each user or ip had it's own 'count_table' row. It meant the final total count lagged a bit, by 60 seconds or so once the count_table rows had been counted up and deleted, that was the downside but it was totally acceptable. I wish I'd have thought of this, it's much better and simpler I think haha. |
|