All the "index" actions need pagination. Ideally I'd like this to be based on date rather than page number, so ?before=20090426T123456Z (or ?after=...) would work. Previous/next links based on these have the advantage that you can read forwards (i.e. what would be decreasing values of N in ?page=N) without accidentally skipping an entry if a new entry is posted during your reading, because you ask for the next 20 after this datetime, not LIMIT 20 OFFSET N*20 (which is a moving target).
All the "index" actions need pagination. Ideally I'd like this to be based on date rather than page number, so ?before=20090426T123456Z (or ?after=...) would work. Previous/next links based on these have the advantage that you can read forwards (i.e. what would be decreasing values of N in ?page=N) without accidentally skipping an entry if a new entry is posted during your reading, because you ask for the next 20 after this datetime, not LIMIT 20 OFFSET N*20 (which is a moving target).