Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Good Morning. I am reading Introduction to Tornado and came across a benchmark which confuses me. They are comparing a server which is using Synchronous HTTP requests to one using Asynchronous HTTP request.

For sync requests they are using:

class IndexHandler(tornado.web.RequestHandler):
    def get(self):
        query = self.get_argument('q')
        client = tornado.httpclient.HTTPClient()
        response = client.fetch("http://search.twitter.com/search.json?" + \
                urllib.urlencode({"q": query, "result_type": "recent", "rpp": 100}))
        body = json.loads(response.body)
        result_count = len(body['results'])
        now = datetime.datetime.utcnow()
        raw_oldest_tweet_at = body['results'][-1]['created_at']
        oldest_tweet_at = datetime.datetime.strptime(raw_oldest_tweet_at,
                "%a, %d %b %Y %H:%M:%S +0000")
        seconds_diff = time.mktime(now.timetuple()) - \
                time.mktime(oldest_tweet_at.timetuple())
        tweets_per_second = float(result_count) / seconds_diff
        self.write("""
<div style="text-align: center">
    <div style="font-size: 72px">%s</div>
    <div style="font-size: 144px">%.02f</div>
    <div style="font-size: 24px">tweets per second</div>
</div>""" % (query, tweets_per_second))

For async reqeusts they are using:

class IndexHandler(tornado.web.RequestHandler):
    @tornado.web.asynchronous
    def get(self):
        query = self.get_argument('q')
        client = tornado.httpclient.AsyncHTTPClient()
        client.fetch("http://search.twitter.com/search.json?" + \
                urllib.urlencode({"q": query, "result_type": "recent", "rpp": 100}),
                callback=self.on_response)

    def on_response(self, response):
        body = json.loads(response.body)
        result_count = len(body['results'])
        now = datetime.datetime.utcnow()
        raw_oldest_tweet_at = body['results'][-1]['created_at']
        oldest_tweet_at = datetime.datetime.strptime(raw_oldest_tweet_at,
                "%a, %d %b %Y %H:%M:%S +0000")
        seconds_diff = time.mktime(now.timetuple()) - \
                time.mktime(oldest_tweet_at.timetuple())
        tweets_per_second = float(result_count) / seconds_diff
        self.write("""
<div style="text-align: center">
    <div style="font-size: 72px">%s</div>
    <div style="font-size: 144px">%.02f</div>
    <div style="font-size: 24px">tweets per second</div>
</div>""" % (self.get_argument('q'), tweets_per_second))
        self.finish()

They are then running a benchmark on each server using siege

$siege http://localhost:8000/?q=pants -c10 -t10s

Results:

Sync:

Transactions: 29hits
Availabitlity: 100%
Elaspsed time: 9.07 secs
Data transferred: 0.00MB
REspone time: 1.99 secs
Transaction rate: 3.20 trans/sec
Throughput: 0.00 MB/sec
Concurrency: 6.37
Successful transactions: 29
Failed transactions: 0
Longest transaction: 3.77
Shortest transaction: 0.24

Async:

Transactions: 118hits
Availabitlity: 100%
Elaspsed time: 9.37 secs
Data transferred: 0.02MB
REspone time: .29 secs
Transaction rate: 15.59 trans/sec
Throughput: 0.00 MB/sec
Concurrency: 3.59
Successful transactions: 118
Failed transactions: 0
Longest transaction: 1.72
Shortest transaction: 0.20

I can see why the async one can handle more connections but why are the response times so much faster?

If we assumed that twitter api had a constant time shouldn't the response times to the synchronous server be the same as the asynchronous server, but where the asynchronous server can handle more reqeusts in the 10 seconds??

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.