Joey Rivera’s Blog: Using Zend_Paginator with Twitter API and Zend_Cache
Joey Rivera published interesting tutorial about paging cached Twitter API results.
To demonstrate how to use Zend_Paginator I created a sample Zend Framework 1.10.0 application. This application grabs my last 50 tweets using the Twitter API and displays them 10 at a time using Zend_Paginator. I use Zend_Cache to cache my twitter data so I don’t have to spend time accessing their api every time – I’m sure they would appreciate it.
He guides through all steps of building sample application, from bootstraping, through use of Twitter service, to actual displaying results.