“On a Youtube-like website, would it make sense to use individual sqlite files to store video comments? (One sqlite file per video.)”
I’m curious to hear what anyone thinks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As you’ve stated in the comments that you already have a MySQL database for videos, there’s little sense in using SQLite for commenting. A comments table with a video_id column is going to be a lot more flexible.
SQLite also doesn’t hold up too well in a situation where you might have concurrent writes, which commenting is.