I am implementing Bulk SMS in my application with the help of HTTP API's. Since HTTP urls have limit in number of characters to be sent at a time, i cannot request API along with all the numbers at once. So following is the logic i am using
Input
Number of Phone Number : 10000
Number of Phone Numbers per Single HTTP API request : 100
Requirement
A Queue to send 100 request and process 100 response. I am expecting something like "Tornado Queues" (http://www.tornadoweb.org/en/stable/queues.html)