Performance benchmarks - redis mget vs pipeline

Redis provides a benchmarking tool called redis-benchmark for testing the performance of common redis commands. The benchmarks in this blog are run on below configuration....

3 minute read

Backend development roadmap, skills, resources

How to start backend development? Most popular question among aspiring backend development enthusiasts. Backend developers mostly deal with data, business logic, and the efficient retrieval...

6 minute read

Performance benchmarks - redis get vs mget

Redis provides a benchmarking tool called redis-benchmark for testing the performance of common redis commands. The benchmarks in this blog are run on below configuration....

3 minute read

Brief note on debugging

Disclaimer - This article is written in the context of Software Engineering at companies with multiple environments, huge code bases, multiple services etc. Extrapolate to...

2 minute read

Performance benchmarks - mget vs hmget(pipeline)

Redis provides a benchmarking tool called redis-benchmark for testing the performance of common redis commands. The benchmarks in this blog are run on below configuration....

8 minute read

Is Node.js really single threaded?

Many developers wonder at some point in their Node.js programming journey that, is Node.js really single-threaded? If it is, how is it able to do...

2 minute read

Overriding Django Model fields for good

Django’s ORM framework is very flexible and it unfolds the easiest ways to interact with your database without explicitly writing SQL. But this flexibility also...

3 minute read