What is a good way to store all the comments for many posts on a web server? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is a good way to store all the comments for many posts on a web server?

With my current system I am storing posts in a database, each post has its own xml file that stores comments. this works well for now but it feels disorganised and inefficient. Can anyone think of something better? storing them in the database seems like it would have too many entries without a good index

21st Jan 2017, 6:45 PM
Chris Thornton
Chris Thornton - avatar
1 Answer
0
specifiy a comments table with id and post_id column and user_id to specifiy the owner and for which post he wrote the comment. And you may add also a filter for bad words as f***
30th Jan 2017, 5:21 PM
Oussama Jaaouani
Oussama Jaaouani - avatar