top of page


Developing a Backend with Django for a Cloud Cost Optimization Tool
Cloud cost optimization is critical for businesses leveraging cloud infrastructure, as it allows them to reduce spending, streamline resource use, and maintain performance. Using Django as the backend framework for a cloud cost optimization tool can expedite development while providing robust features for handling complex data and APIs. Here’s a step-by-step look into how Django is used effectively in building a backend for such a tool. 1. Why Django for Cloud Cost Optimizati

Sameer Natu
Nov 18, 20243 min read


Our experiences with running Strapi in cluster mode
One way to scale a Node based system is to run multiple instances of the server. This approach also works well for Strapi because Strapi doesn't store anything in-memory on the server-side (no sticky sessions). The JWT tokens it issues persist in the database. So, any time we observe a Strapi setup struggling to handle the load of requests on the Node side, we add more instances running the same code. For setups with a predictable workload, pm2 offers a simple way to manage m

Rajeev Gadgil
Mar 18, 20234 min read
bottom of page

