Modern backend applications rarely deal with simple queries. Once users demand filtering, searching, sorting, and combining multiple conditions dynamically, traditional repository methods quickly become unmanageable.
In modern microservices architectures, visibility into data access patterns is crucial. Whether for debugging, performance tuning, or audit logging, knowing exactly what commands are sent to your database can save hours of investigation. In this article, we'll explore how to implement a CommandListener in Redis OM Spring to intercept and log RediSearch commands.
Rate limiting is a critical mechanism that protects APIs from abuse, ensures fair resource allocation, and maintains system stability. In this article, I'll explain the implementation of a distributed rate limiter for Spring Boot applications using Kotlin and Redis.
This project demonstrates how to implement synchronous request-response communication using Apache RabbitMQ in a Spring Boot Kotlin application. While RabbitMQ is inherently asynchronous, this implementation creates a synchronous communication layer that mimics traditional RPC (Remote Procedure Call) behavior.
This project demonstrates how to implement synchronous request-response communication using Apache Kafka in a Spring Boot Kotlin application. While Kafka is inherently asynchronous, this implementation creates a synchronous communication layer that mimics traditional RPC(Remote Procedure Call) behavior.
This guide demonstrates how to implement robust Behavior-Driven Development (BDD) integration tests using Cucumber in a Spring Boot Kotlin application with JWT authentication. The setup leverages Testcontainers for database isolation and provides a clean, maintainable testing architecture.
In today's data-driven world, the ability to search through large datasets quickly and efficiently is crucial for any application. Traditional SQL databases, while powerful, can become bottlenecks when dealing with complex search queries on massive datasets. This is where RediSearch comes into play — a full-text search engine built on top of Redis that provides light and fast search capabilities.
Why You Shouldn’t use oracle-free or oracle-xe with Testcontainers when you need multiple schemas.
In an era where digital privacy has become more crucial than ever, this open-source Chrome extension demonstrates how modern web technologies can create elegant privacy solutions for Bip Web users. Built entirely in the open with React, TypeScript, and Chrome’s Manifest V3, this community-driven tool showcases best practices in extension development while solving real-world privacy challenges through intelligent blur effects and granular user controls.
In a distributed system with Spring Cloud Config, the config server needs to track which clients are connected and their network details.