3 ms·
Yes. Create a comments table, and have a parent_id column on it.
by eurasiantiger 3y ago
Yes. Create a comments table, and have a parent_id column on it.
- abhishekjha 3y agoQuerying it in realtime would be very expensive. You will have to keep joining for too long to find all the comments in a thread.
- eurasiantiger 3y agoAnd that’s why graph databases. Practically, you always need to limit the recursion depth anyway (can’t show infinite depth on an UI), so you might be able to make do with postgre.