Showing posts with label performance-tuning. Show all posts
Showing posts with label performance-tuning. Show all posts

14 March 2018

Third Party API Fetch Strategy

At Jetabroad, we have to call Amazon Web Service API to manage our EC2 instances. The problem is
how to minimize API call and handle the schema provided as efficiently as possible.

18 May 2017

Speeding up Python Pandas with Vectorized Operations

When working on very large datasets, vectorized operations are many orders of magnitude faster than naive row-by-row operations. In my example, 200X faster.