RMRambhu Mukhiainmukhiarambhu.hashnode.dev·May 24, 2025 · 4 min readWhat is Vector Search?Vector search is changing how we find information. Unlike old search methods that look for exact words, vector search finds content based on meaning. This makes search results more helpful and human-like. When you search for "quick healthy breakfast ...00
RMRambhu Mukhiainmukhiarambhu.hashnode.dev·Jan 19, 2025 · 5 min readHybridCache in ASP.NET Core - New Caching LibraryCaching is essential for building fast, scalable applications. ASP.NET Core has traditionally offered two caching options: in-memory caching and distributed caching. Each has its trade-offs. In-memory caching using IMemoryCache is fast but limited to...00
RMRambhu Mukhiainmukhiarambhu.hashnode.dev·Jan 19, 2025 · 4 min readDependency Injection in .NET Core 8: Concepts and Best PracticesDependency Injection (DI) is a design pattern that has become a staple in modern application development, including in .NET Core. It promotes the creation of modular, decoupled, and maintainable code, making your software more scalable and easier to ...00
RMRambhu Mukhiainmukhiarambhu.hashnode.dev·Sep 2, 2023 · 3 min readBackends for Frontends (BFF) patternGiven that our system was originally designed for desktop-web UI, we frequently encountered difficulties in adapting mobile UIs or other user interfaces as we already had a tight coupling between the desktop web UI and our backend services. Does your...00
RMRambhu Mukhiainmukhiarambhu.hashnode.dev·Feb 20, 2023 · 4 min readCreating CI/CD Pipelines in Azure DevOpsContinuous Integration (CI)/Continuous Delivery (CD) pipelines will allow us to deploy a new version of software through a path of building, testing, and deploying code. It introduces automation and continuous monitoring throughout the lifecycle of a...00