Run docker in WSL for better performance and access app from Windows.

Introduction Running docker on Windows can be really slow. No matter how much you tune the configuration of docker containers, the performance lags far behind when compared to Linux or Mac. One solution to this problem can be to run docker in WSL for better performance. Windows Subsystem for Linux has revolutionized development by allowing […]

Efficiently searching rows by matching key-value pairs in a Jsonb array using sequelize

In today’s web development, handling JSON data has become increasingly prevalent, and databases have evolved to accommodate this trend. Sequelize, a widely-used ORM (Object-Relational Mapping) for Node.js, offers robust support for working with JSONB (binary JSON) data types in relational databases. In this blog post, we will explore efficiently searching rows by matching key-value pairs […]