I am building a website that shows recommend pages for users.
Users only click next button to look at different recommend web pages.
I wanna check every single activities that users can make.
So, I will check page views that users actually see.
1. there is a 'user_pageview' column for each users.
2. the numbers will increase every time if users click next button.
I can send a query to update data every single time.
However, I believe this step will be annoying to my server.
So, I am thinking to save the data into session for a while and save it later.
What do you think?