I'm making an app that reads the public twitter feeds of people
I follow using the Twitter4J API...searching for keywords.
Right now, its setup just to search my feed...I use a simple cron job hitting a url.
I takes about 10 seconds because I process any urls in the tweets.
Should I continue using cron jobs and just hit one unique twitter user per request (every minute or so)
or use Task Queues and try to bunch them together?