I'm currently creating a voting system with good and bad option for a comment. Basically, the idea is like facebook's one, but have a bad option(or more) for the comment. Here is the table structure
id | comment_id | voter_id | voter_option
So, once the user vote it, a record will be store in the mysql database on the above format, why I'm doing this is because I don't want the user re-vote, and want to record what they like/dislike.
my question is, I think, if there have 10,000 comments in my website, and each comments got 1,000 votes, then my database is become very large, are there any good method(example maybe) to prevent the database become too large? Or I need to create a table for each comments in my case, thanks in advance.