Tag: Performance
-
3 Signs Your Website Is Slowing Down Your Company’s Growth

In the early 2000s, I’ve learned that cluttered websites hinder user engagement. Key takeaways include integrating analytics to understand user behavior, ensuring fast loading times to avoid high bounce rates, and maintaining a modern, clean design to reflect professionalism. Impressions made through a website are crucial for business success.
-
Use Pagination to Speed Up Your API

In this article, I show the main steps to implement the pagination to optimize the response time of your API. I start by reproducing it locally, then, determine the sort order and page size, adapt the database queries, and finally adapt the frontend.
-
Optimize Your API Using Memoization

In this article I describe how to use the memoization to optimize the response time of a request. I explain how to prepare the code and how to apply the solution.
-
4 Performance Optimization Techniques for Your Application

In this article, I show 4 performance techniques to optimize the response time of an endpoint. 4 steps which goes from the most simple to the most complex as: memoization, pagination, denormalization and cache.
-
Trade-offs in Pursuit of High-Performance Application

In this article I will describe 4 trade-offs I use to pursuit the high-performance of an application. Increasing the memory consumption, duplicate data in the database, add additional servers, and add additional services.
-
The Fastest Way to Read Dict in Python

Have you ever wonder which is the fastest way to access a value in a dictionary in Python? In the current article, I’ve tried to answer those questions. I made a small benchmark where I try to figure out which is the fastest way to read a dictionary in Python.
