RIMANSHU SINGHforme.hashnode.dev·Dec 4, 2024MongoDB Aggregation Pipeline ExplainedBefore diving into the Aggregation Pipeline, ensure you are familiar with CRUD operations, creating a cluster, connecting to MongoDB, and understanding documents in MongoDB. An aggregation pipeline consists of one or more stages that process the docu...MongoDB
Shaun Liewshaunliew.hashnode.dev·Dec 3, 2024Serverless RAG Architecture: Combining MongoDB Atlas Vector Search, Amazon Bedrock, and AWS LambdaBuilding production-ready RAG (Retrieval-Augmented Generation) systems doesn't have to be complex. In this guide, we'll explore how to combine MongoDB Atlas Vector Search, Amazon Bedrock, and AWS Lambda to create an efficient and scalable RAG pipelin...1 like·54 readsAWS
Abdul Rahman Moinrefresh-token-vs-access-token.hashnode.dev·Nov 29, 2024Refresh Token vs Access TokenWhat is an Access Token? An access token, typically JWT, is an encrypted thing that saves the time of the user and the server cost the website owner. But what actually is it? It is an encrypted token or string that is equal (when it got decrypted) to...refresh-token
Ahmed Razaahmedrazadev.hashnode.dev·Nov 4, 2024MongoDB: A Comprehensive Guide to the Modern Database SolutionIn the world of modern applications, the demand for flexible, scalable, and high-performance data solutions is rapidly growing. MongoDB has become a go-to solution for many developers and organizations because of its dynamic document-based architectu...MongoDB Tutorial
Arturcode-with-arthur.hashnode.dev·Oct 28, 2024Building and Testing a Node.js API with MongoDB Atlas and PostmanIntroduction Hey, have you ever worked with Node.js and needed a reliable place to store data? Sometimes, you want a quick, easy way to save and retrieve information without dealing with complicated databases. That’s where MongoDB Atlas comes in—a fu...MongoDB
Shiv Iyershiviyer.hashnode.dev·Sep 30, 2024Maximizing Performance in MongoDB: Best Practices for High-Performance Data Transformation and Analysis Using Aggregation PipelinesUsing aggregation pipelines in MongoDB is an efficient way to perform data transformation and analysis directly within the database, which can result in significant performance improvements by leveraging MongoDB's optimized data processing capabiliti...MongoDB
Boluwatife Oludupincravity.hashnode.dev·Sep 28, 2024Seamlessly Integrate Power BI with MongoDB Atlas: A Step-by-Step GuideIntroduction In today’s data-driven world, making informed decisions swiftly is essential for businesses of all sizes. This is where Business Intelligence (BI) tools like Power BI come into play. Power BI empowers organizations to collect, analyze, a...MongoDB
Shiv Iyershiviyer.hashnode.dev·Aug 31, 2024Effective Ways to Manage Data Transfer Costs in MongoDB AtlasHere are three ways to use MongoDB Atlas to optimize data transfer costs: 1. Utilize Data Locality Features to Minimize Cross-Region Traffic MongoDB Atlas allows you to deploy your clusters in specific regions or even multiple regions globally. By st...MongoDB
Srivani Kondaintrovertwinner.hashnode.dev·Jul 28, 2024Querying Made Simple with QuickQueryIntroduction Transitioning from React to the MERN stack was initially daunting due to the overwhelming documentation, but this challenge inspired me to create QuickQuery. QuickQuery is a tool designed for developers who prefer quick solutions over ex...12 likesAIForTomorrow
Ernesto Yanac Huertasernestoyanac.com·Jul 13, 2024BulkWrite vs. Iterative UpdatesWe often encounter scenarios where we need to update multiple documents in a MongoDB collection. One common approach is to iterate through the documents and execute individual update statements. However, MongoDB provides a more efficient alternative:...MongoDB