All examples in the Tornado documents show how we can make further HTTP requests asynchronously using Tornado.
http_client = httpclient.AsyncHTTPClient()
http_client.fetch("http://www.google.com/", handle_request)
While I want to ensure that my tornado doesn't wait for response from database (get command of couchbase) to send next.
Check my other bug to understand why I want async call to couchbase.