the question why do you want to paginate comments while you are paginating posts? in general when you paginate the main model (Post), you just include summary fields from the associated models example -last commented by commenter name -last comment title... not body... (text) -last commented in (date) -total number of comments (number) -total number of visits (number) etc...
so either these fields are redundant in the posts table just for performance issue (many question marks here maybe) or you do custom pagination queries to retrieve the last things for each post (in the current pagination of course... the current page I mean) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
