I am working on a web project that has to handle so many clients. Requests. Therefore, I am considering using Cassandra and a tornado. The tornado seems to have a built-in client (tornado.httpclient.AsyncHTTPClient) that can execute an HTTP request without blocking. But, Cassandra uses the Thrift protocol. Using Thrift, the Tornado seems to be blocked when he asks Cassandra.
Has anyone got experience? Please suggest how to do this. Or is there any additional module for this purpose?
Thank.
source
share