It will only show no more than 5 comments, how to query it in database?
I mean how to query for questions and limited comments at the same time?
feedback
|
This question came from our site for professional and enthusiast programmers.
Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.
| |||||||
feedback
|
|
By passing the last received comment id (likely the id of the post owning the comment, too) to the database, and asking for the next five with higher id's, sequentially ordered. | |||
|
feedback
|
| |||
|
feedback
|
|
I would guess like this
I would recon they would have a similar query like this. | |||
feedback
|
This is something that only Jeff and his team can answer. I do not know if they are doing one round trip per comment batch or grabbing them all in one go. | |||
|
feedback
|
|
may be like
EDIT: This is true for large number of comments. But for smaller number of comments it just collects first five comments irrespective of comment_votes
| ||||
|
feedback
|