An API Server without Caching or Batching
Learn how to implement an API server without using caching or batching.
We'll cover the following...
Before we start diving into this new challenge, let’s implement a small demo server that we’ll use as a reference to measure the impact of the various techniques we’re going to implement.
Example
Let’s consider an API server that manages the sales of an e-commerce company. In particular, we want to query our server for the sum of all the transactions of a particular type of merchandise. For this purpose, we’re going to use a LevelUP database ...