How does async work in Tornado?
问题 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. 回答1: As far as I know Couchbase driver is not an async driver so this wont work. Make the db