php - Right way to store/trac visits of an item - job board -


Develop a job board site, where I have the following tables:

  • CV (
  • Users
  • I want to follow the notification:

    • How many users
    • How many CV visits
    • How many CVs I have seen
    • How many jobs I have seen

    A table has been created to give me a clear idea of : Log_jobs (id, job_id, user_id) and a log_cv (id, cv_id, user_id)

    with it I want to know that I can create information.

    But the question is:

    • We are expecting a lot of traffic, with this aproach I have mysql Can there be a real big size (imagine, two travels in the job, each trip in the CV, two questions, two questions, this just to log the action)? Mysql can handle with a real big table ??
    • > There are no problems with the big table MySOL, you only need to make the necessary indexes on one table and you will not have any problems.

      If you only want to display the sum, you can also create a table to store log_view (cv_id, view_count) just like 'hit' and then increase the view count each time you view the cv You can.


Comments

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -