sourceName
stringclasses
1 value
url
stringlengths
52
145
action
stringclasses
1 value
body
stringlengths
0
60.5k
format
stringclasses
1 value
metadata
dict
title
stringlengths
5
125
updated
stringclasses
3 values
devcenter
https://www.mongodb.com/developer/languages/javascript/hapijs-nodejs-driver
created
# Build a RESTful API with HapiJS and MongoDB While JAMStack, static site generators, and serverless functions continue to be all the rage in 2020, traditional frameworks like Express.js and Hapi.js remain the go-to solution for many developers. These frameworks are battle-tested, reliable, and scalable, so while they...
md
{ "tags": [ "JavaScript", "MongoDB", "Node.js" ], "pageDescription": "Learn how to build an API with HapiJS and MongoDB.", "contentType": "Tutorial" }
Build a RESTful API with HapiJS and MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/python/python-change-streams
created
# MongoDB Change Streams with Python ## Introduction Change streams allow you to listen to changes that occur in your MongoDB database. On MongoDB 3.6 or above, this functionality allows you to build applications that can immediately respond to real time data changes. In this tutorial, we'll show you how to use...
md
{ "tags": [ "Python", "MongoDB" ], "pageDescription": "Change streams allow you to listen to changes that occur in your MongoDB database.", "contentType": "Quickstart" }
MongoDB Change Streams with Python
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/introduction-aggregation-framework
created
# Introduction to the MongoDB Aggregation Framework One of the difficulties when storing any data is knowing how it will be accessed in the future. What reports need to be run on it? What information is "hidden" in there that will allow for meaningful insights for your business? After spending the time to design...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Learn about MongoDB's aggregation framework and aggregation operators.", "contentType": "Quickstart" }
Introduction to the MongoDB Aggregation Framework
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/bson-data-types-decimal128
created
# Quick Start: BSON Data Types - Decimal128 Think back to when you were first introduced to the concept of decimals in numerical calculations. Doing math problems along the lines of 3.231 / 1.28 caused problems when starting out because 1.28 doesn't go into 3.231 evenly. This causes a long string of numbers to b...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Working with decimal numbers can be a challenge. The Decimal128 BSON data type allows for high precision options when working with numbers.", "contentType": "Quickstart" }
Quick Start: BSON Data Types - Decimal128
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/getting-started-kotlin-driver
created
# Getting Started with the MongoDB Kotlin Driver > This is an introductory article on how to build an application in Kotlin using MongoDB Atlas and > the MongoDB Kotlin driver, the latest addition to our list of official drivers. > Together, we'll build a CRUD application that covers the basics of how to use MongoDB a...
md
{ "tags": [ "MongoDB", "Kotlin" ], "pageDescription": "This is an introductory article on how to build an application in Kotlin using MongoDB Atlas and the MongoDB Kotlin driver, the latest addition to our list of official drivers.", "contentType": "Tutorial" }
Getting Started with the MongoDB Kotlin Driver
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/python/python-quickstart-starlette
created
# Getting Started with MongoDB and Starlette Starlette is a lightweight ASGI framework/toolkit, which is ideal for building high-performance asyncio services. It provides everything you need to create JSON APIs, with very little boilerplate. However, if you would prefer an async web framework that is a bit more ...
md
{ "tags": [ "Python", "MongoDB" ], "pageDescription": "Getting Started with MongoDB and Starlette", "contentType": "Quickstart" }
Getting Started with MongoDB and Starlette
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/creating-multiplayer-drawing-game-phaser
created
# Creating a Multiplayer Drawing Game with Phaser and MongoDB When it comes to MongoDB, an often overlooked industry that it works amazingly well in is gaming. It works great in gaming because of its performance, but more importantly its ability to store whatever complex data the game throws at it. Let's say you want...
md
{ "tags": [ "JavaScript", "Realm" ], "pageDescription": "Learn how to build a drawing game with Phaser that synchronizes with MongoDB Realm for multiplayer.", "contentType": "Article" }
Creating a Multiplayer Drawing Game with Phaser and MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/maintaining-geolocation-specific-game-leaderboard-phaser-mongodb
created
md
{ "tags": [ "JavaScript", "Atlas" ], "pageDescription": "Learn how to create a game with a functioning leaderboard using Phaser, JavaScript, and MongoDB.", "contentType": "Tutorial" }
Maintaining a Geolocation Specific Game Leaderboard with Phaser and MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/build-infinite-runner-game-unity-realm-unity-sdk
created
# Build an Infinite Runner Game with Unity and the Realm Unity SDK > The Realm .NET SDK for Unity is now in GA. Learn more here. > Did you know that MongoDB has a Realm SDK for the Unity game development framework that makes working with game data effortless when making mobile games, PC games, and similar? It's curr...
md
{ "tags": [ "Realm", "C#", "Unity" ], "pageDescription": "Learn how to use Unity and the Realm SDK for Unity to build an infinite runner style game.", "contentType": "Tutorial" }
Build an Infinite Runner Game with Unity and the Realm Unity SDK
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-how-to-add-realm-to-your-unity-project
created
# Persistence in Unity Using Realm When creating a game with Unity, we often reach the point where we need to save data that we need at a later point in time. This could be something simple, like a table of high scores, or a lot more complex, like the state of the game that got paused and now needs to be resumed exact...
md
{ "tags": [ "Realm", "C#", "Unity" ], "pageDescription": "This article shows how to integrate the Realm Unity SDK into your Unity game. We will cover everything you need to know to get started: installing the SDK, defining your models, and connecting the database to your GameObjects.", "contentType"...
Persistence in Unity Using Realm
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/python/python-quickstart-aggregation
created
# Getting Started with Aggregation Pipelines in Python MongoDB's aggregation pipelines are one of its most powerful features. They allow you to write expressions, broken down into a series of stages, which perform operations including aggregation, transformations, and joins on the data in your MongoDB databases....
md
{ "tags": [ "Python", "MongoDB" ], "pageDescription": "Query, group, and join data in MongoDB using aggregation pipelines with Python.", "contentType": "Quickstart" }
Getting Started with Aggregation Pipelines in Python
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/integration-test-atlas-serverless-apps
created
# How to Write Integration Tests for MongoDB Atlas Functions > As of June 2022, the functionality previously known as MongoDB Realm is now named Atlas App Services. Atlas App Services refers to the cloud services that simplify building applications with Atlas – Atlas Data API, Atlas GraphQL API, Atlas Triggers, and At...
md
{ "tags": [ "Realm", "Serverless" ], "pageDescription": "Learn how to write integration tests for MongoDB Atlas Functions.", "contentType": "Tutorial" }
How to Write Integration Tests for MongoDB Atlas Functions
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/java/java-client-side-field-level-encryption
created
# Java - Client Side Field Level Encryption ## Updates The MongoDB Java quickstart repository is available on GitHub. ### February 28th, 2024 - Update to Java 21 - Update Java Driver to 5.0.0 - Update `logback-classic` to 1.2.13 ### November 14th, 2023 - Update to Java 17 - Update Java Driver to 4.11.1 - Update m...
md
{ "tags": [ "Java", "MongoDB" ], "pageDescription": "Learn how to use the client side field level encryption using the MongoDB Java Driver.", "contentType": "Quickstart" }
Java - Client Side Field Level Encryption
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/introduction-to-linked-lists-and-mongodb
created
# A Gentle Introduction to Linked Lists With MongoDB Are you new to data structures and algorithms? In this post, you will learn about one of the most important data structures in Computer Science, the Linked List, implemented with a MongoDB twist. This post will cover the fundamentals of the linked list data structur...
md
{ "tags": [ "JavaScript", "MongoDB" ], "pageDescription": "Want to learn about one of the most important data structures in Computer Science, the Linked List, implemented with a MongoDB twist? Click here for more!", "contentType": "Tutorial" }
A Gentle Introduction to Linked Lists With MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-data-architecture-ofish-app
created
# Realm Data and Partitioning Strategy Behind the WildAid O-FISH Mobile Apps In 2020, MongoDB partnered with the WildAid Marine Protection Program to create a mobile app for officers to use while out at sea patrolling Marine Protected Areas (MPAs) worldwide. We implemented apps for iOS, Android, and web, where they al...
md
{ "tags": [ "Realm" ], "pageDescription": "Understand the data model and partitioning scheme used for WildAid's O-FISH app and how you can adapt them for your own mobile apps.", "contentType": "Tutorial" }
Realm Data and Partitioning Strategy Behind the WildAid O-FISH Mobile Apps
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/php/laravel-mongodb-tutorial
created
# How To Build a Laravel + MongoDB Back End Service Laravel is a leading PHP framework that vastly increases the productivity of PHP developers worldwide. I come from a WordPress background, but when asked to build a web service for a front end app, Laravel and MongoDB come to mind, especially when combined with the M...
md
{ "tags": [ "PHP" ], "pageDescription": "A tutorial on how to use MongoDB with Laravel Eloquent, but also with the native MongoDB Query API and Aggregation Pipeline, to access the new MongoDB features.", "contentType": "Tutorial" }
How To Build a Laravel + MongoDB Back End Service
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/global-read-write-concerns
created
# Set Global Read and Write Concerns in MongoDB 4.4 MongoDB is very flexible when it comes to both reading and writing data. When it comes to writing data, a MongoDB write concern allows you to set the level of acknowledgment for a desired write operation. Likewise, the read concern allows you to control the consisten...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Learn how to set global read isolation and write durability defaults in MongoDB 4.4.", "contentType": "Article" }
Set Global Read and Write Concerns in MongoDB 4.4
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/location-geofencing-stitch-mapbox
created
# Location Geofencing with MongoDB, Stitch, and Mapbox > > >Please note: This article discusses Stitch. Stitch is now MongoDB Realm. >All the same features and functionality, now with a new name. Learn more >here. We will be updating this article >in due course. > > For a lot of organizations, when it comes to locati...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Learn how to use MongoDB geospatial queries and GeoJSON with Mapbox to create dynamic geofences.", "contentType": "Tutorial" }
Location Geofencing with MongoDB, Stitch, and Mapbox
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-cocoa-data-types
created
# New Realm Cocoa Data Types In this blog post we will discover the new data types that Realm has to offer. Over the past year we have worked hard to bring three new datatypes to the Realm SDK: `MutableSet`, `Map`, and `AnyRealmValue`. > **Build better mobile apps with Atlas Device Sync**: Atlas Device Sync is a ful...
md
{ "tags": [ "Realm", "Mobile" ], "pageDescription": "In this blog post we will discover the new data types that Realm Cocoa has to offer.", "contentType": "Article" }
New Realm Cocoa Data Types
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/java/java-setup-crud-operations
created
# Getting Started with MongoDB and Java - CRUD Operations Tutorial ## Updates The MongoDB Java quickstart repository is available on GitHub. ### February 28th, 2024 - Update to Java 21 - Update Java Driver to 5.0.0 - Update `logback-classic` to 1.2.13 - Update the `preFlightChecks` method to support both MongoDB At...
md
{ "tags": [ "Java", "MongoDB" ], "pageDescription": "Learn how to use MongoDB with Java in this tutorial on CRUD operations with example code and walkthrough!", "contentType": "Quickstart" }
Getting Started with MongoDB and Java - CRUD Operations Tutorial
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-meetup-javascript-react-native
created
# Realm Meetup - Realm JavaScript for React Native Applications Didn't get a chance to attend the Realm JavaScript for React Native applications Meetup? Don't worry, we recorded the session and you can now watch it at your leisure to get you caught up. :youtube]{vid=6nqMCAR_v7U} In this event, recorded on June 10th,...
md
{ "tags": [ "Realm", "JavaScript", "React" ], "pageDescription": "In this event, recorded on June 10th, Andrew Meyer, Software Engineer, on the Realm JavaScript team, walks us through the React Native ecosystem as it relates to persisting data with Realm. We discuss things to consider when using React...
Realm Meetup - Realm JavaScript for React Native Applications
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/designing-developing-analyzing-new-mongodb-shell
created
# Designing, Developing, and Analyzing with the New MongoDB Shell There are many methods available for interacting with MongoDB and depending on what you're trying to accomplish, one way to work with MongoDB might be better than another. For example, if you're a power user of Visual Studio Code, then the MongoDB Exten...
md
{ "tags": [ "MongoDB", "Bash", "JavaScript" ], "pageDescription": "Learn about the benefits of using the new MongoDB Shell for interacting with databases, collections, and the data inside.", "contentType": "Article" }
Designing, Developing, and Analyzing with the New MongoDB Shell
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/csharp/getting-started-unity-creating-2d-game
created
# Getting Started with Unity for Creating a 2D Game If you've been keeping up with the content on the MongoDB Developer Portal, you'll know that a few of us at MongoDB (Nic Raboy, Adrienne Tacke, Karen Huaulme) have been working on a game titled Plummeting People, a Fall Guys: Ultimate Knockout tribute game. Up until ...
md
{ "tags": [ "C#", "Unity" ], "pageDescription": "Learn how to get started with Unity for moving an object on the screen with physics and collisions.", "contentType": "Tutorial" }
Getting Started with Unity for Creating a 2D Game
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/adding-realm-as-dependency-ios-framework
created
# Adding Realm as a dependency to an iOS Framework # Adding Realm as a Dependency to an iOS Framework ## Introduction In this post we’ll review how we can add RealmSwift as a dependency to our libraries, using two different methods: Xcode assistants and the Swift Package Manager. ## The Problem I have a little, n...
md
{ "tags": [ "Realm", "Swift", "iOS" ], "pageDescription": "Adding Realm to a Project is how we usually work. But sometimes we want to create a Framework (could be the data layer of a bigger project) that uses Realm. So... how do we add Realm as a dependency to said Framework? ", "contentType": "Tuto...
Adding Realm as a dependency to an iOS Framework
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/nodejs-python-ruby-atlas-api
created
# Calling the MongoDB Atlas Administration API: How to Do it from Node, Python, and Ruby The real power of a cloud-hosted, fully managed service like MongoDB Atlas is that you can create whole new database deployment architectures automatically, using the services API. Getting to the MongoDB Atlas Administration API i...
md
{ "tags": [ "Atlas", "Ruby", "Python", "Node.js" ], "pageDescription": "Learn how to use digest authentication for the MongoDB Atlas Administration API from Python, Node.js, and Ruby.", "contentType": "Tutorial" }
Calling the MongoDB Atlas Administration API: How to Do it from Node, Python, and Ruby
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/node-transactions-3-3-2
created
# How to Use MongoDB Transactions in Node.js Developers who move from relational databases to MongoDB commonly ask, "Does MongoDB support ACID transactions? If so, how do you create a transaction?" The answer to the first question is, "Yes!" Beginning in 4.0, MongoDB added support for multi-document ACID transa...
md
{ "tags": [ "JavaScript", "MongoDB", "Node.js" ], "pageDescription": "Discover how to implement multi-document transactions in MongoDB using Node.js.", "contentType": "Quickstart" }
How to Use MongoDB Transactions in Node.js
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/mongodb-automation-index-autopilot
created
# Database Automation Series - Automated Indexes Managing databases can be difficult, but it doesn't have to be. Most aspects of database management can be automated, and with a platform such as MongoDB Atlas, the tools are not only available, but they're easy to use. In this series, we'll chat with Rez Kahn, Lead Pro...
md
{ "tags": [ "Atlas" ], "pageDescription": "Learn about database automation with Rez Kahn - Part 1 - Index Autopilot", "contentType": "Podcast" }
Database Automation Series - Automated Indexes
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/typescript/type-safety-with-prisma-and-mongodb
created
# Type Safety with Prisma & MongoDB Did you know that Prisma now supports MongoDB? In this article, we'll take a look at how to use Prisma to connect to MongoDB. ## What is Prisma? Prisma is an open source ORM (Object Relational Mapper) for Node.js. It supports both JavaScript and TypeScript. It really shines when u...
md
{ "tags": [ "TypeScript", "MongoDB", "JavaScript" ], "pageDescription": "In this article, we’ll explore Prisma, an Object Relational Mapper (ODM) for MongoDB. Prisma helps developers to write code that is both readable and type-safe.", "contentType": "Tutorial" }
Type Safety with Prisma & MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/python/flask-python-mongodb
created
# Build a RESTful API with Flask, MongoDB, and Python >This is the first part of a short series of blog posts called "Rewrite it in Rust (RiiR)." It's a tongue-in-cheek title for some posts that will investigate the similarities and differences between the same service written in Python with Flask, and Rust with Actix...
md
{ "tags": [ "Python", "Flask" ], "pageDescription": "Build a RESTful API with Flask, MongoDB, and Python", "contentType": "Tutorial" }
Build a RESTful API with Flask, MongoDB, and Python
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/real-time-card-fraud-solution-accelerator-databricks
created
# Real-Time Card Fraud Solution Accelerator with MongoDB and Databricks Card fraud is a significant problem and fear for both consumers and businesses. However, despite the seriousness of it, there are solutions that can be implemented for card fraud prevention. Financial institutions have various processes and techn...
md
{ "tags": [ "MongoDB", "AI" ], "pageDescription": "In this article, we'll demonstrate how easy it is to build an ML-based fraud solution using MongoDB and Databricks.", "contentType": "Article" }
Real-Time Card Fraud Solution Accelerator with MongoDB and Databricks
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/serverless-development-kotlin-aws-lambda-mongodb-atlas
created
# Serverless Development with Kotlin, AWS Lambda, and MongoDB Atlas As seen in a previous tutorial, creating a serverless function for AWS Lambda with Java and MongoDB isn't too complicated of a task. In fact, you can get it done with around 35 lines of code! However, maybe your stack doesn't consist of Java, but ins...
md
{ "tags": [ "Atlas", "Kotlin", "Serverless" ], "pageDescription": "Learn how to use Kotlin and MongoDB to create performant and scalable serverless functions on AWS Lambda.", "contentType": "Tutorial" }
Serverless Development with Kotlin, AWS Lambda, and MongoDB Atlas
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/securing-mongodb-with-tls
created
# Securing MongoDB with TLS Hi! I'm Carl from Smallstep. We make it easier to use TLS everywhere. In this post, I’m going to make a case for using TLS/SSL certificates to secure your self-managed MongoDB deployment, and I’ll take you through the steps to enable various TLS features in MongoDB. MongoDB has very strong...
md
{ "tags": [ "MongoDB", "TLS" ], "pageDescription": "Learn how to secure your self-managed MongoDB TLS deployment with certificates using the Smallstep open source online certificate authority.", "contentType": "Article" }
Securing MongoDB with TLS
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-data-federation-control-access-analytics-node
created
# Using Atlas Data Federation to Control Access to Your Analytics Node MongoDB replica sets, analytics nodes, and read preferences are powerful tools that can help you ensure high availability, optimize performance, and control how your applications access and query data in a MongoDB database. This blog will cover how...
md
{ "tags": [ "Atlas" ], "pageDescription": "Learn how to use Atlas Data Federation to control access to your analytics node and customize read preferences and tag sets for a more seamless and secure data experience. ", "contentType": "Article" }
Using Atlas Data Federation to Control Access to Your Analytics Node
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-swift-query-api
created
# Goodbye NSPredicate, hello Realm Swift Query API ## Introduction I'm not a fan of writing code using pseudo-English text strings. It's a major context switch when you've been writing "native" code. Compilers don't detect errors in the strings, whether syntax errors or mismatched types, leaving you to learn of your ...
md
{ "tags": [ "Realm", "Swift" ], "pageDescription": "New type-safe queries in Realm's Swift SDK", "contentType": "News & Announcements" }
Goodbye NSPredicate, hello Realm Swift Query API
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/connectors/deploying-across-multiple-kubernetes-clusters
created
# Deploying MongoDB Across Multiple Kubernetes Clusters With MongoDBMulti This article is part of a three-parts series on deploying MongoDB across multiple Kubernetes clusters using the operators. - Deploying the MongoDB Enterprise Kubernetes Operator on Google Cloud - Mastering MongoDB Ops Manager - Deployin...
md
{ "tags": [ "Connectors", "Kubernetes" ], "pageDescription": "Learn how to deploy MongoDB across multiple Kubernetes clusters using the operator and the MongoDBMulti CRD.", "contentType": "Tutorial" }
Deploying MongoDB Across Multiple Kubernetes Clusters With MongoDBMulti
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-meetup-jwt-authentication
created
# Easy Realm JWT Authentication with CosyncJWT Didn't get a chance to attend the Easy Realm JWT Authentication with CosyncJWT Meetup? Don't worry, we recorded the session and you can now watch it at your leisure to get you caught up. :youtube]{vid=k5ZcrOW-leY} In this meetup, Richard Krueger, CEO Cosync, will focus ...
md
{ "tags": [ "Realm" ], "pageDescription": "This meetup talk will focus on the benefits of JWT authentication and how to easily implement CosyncJWT within a Realm application.", "contentType": "Article" }
Easy Realm JWT Authentication with CosyncJWT
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/mongodb-data-parquet
created
# How to Get MongoDB Data into Parquet in 10 Seconds or Less For those of you not familiar with Parquet, it’s an amazing file format that does a lot of the heavy lifting to ensure blazing fast query performance on data stored in files. This is a popular file format in the Data Warehouse and Data Lake space as well as ...
md
{ "tags": [ "Atlas", "Parquet" ], "pageDescription": "Learn how to transform MongoDB data to Parquet with Atlas Data Federation.", "contentType": "Tutorial" }
How to Get MongoDB Data into Parquet in 10 Seconds or Less
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/semantic-search-mongodb-atlas-vector-search
created
# How to Do Semantic Search in MongoDB Using Atlas Vector Search Have you ever been looking for something but don’t quite have the words? Do you remember some characteristics of a movie but can’t remember the name? Have you ever been trying to get another sweatshirt just like the one you had back in the day but don’t ...
md
{ "tags": [ "Atlas", "JavaScript", "Node.js", "Serverless" ], "pageDescription": "Learn how to get started with Vector Search on MongoDB while leveraging the OpenAI.", "contentType": "Tutorial" }
How to Do Semantic Search in MongoDB Using Atlas Vector Search
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/atlas-flask-azure-container-apps
created
# Building a Flask and MongoDB App with Azure Container Apps For those who want to focus on creating scalable containerized applications without having to worry about managing any environments, this is the tutorial for you! We are going to be hosting a dockerized version of our previously built Flask and MongoDB Atlas...
md
{ "tags": [ "MongoDB", "Python" ], "pageDescription": "This tutorial explains how to host your MongoDB Atlas application on Azure Container Apps for a scalable containerized solution.\n", "contentType": "Article" }
Building a Flask and MongoDB App with Azure Container Apps
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/building-multi-environment-continuous-delivery-pipeline-mongodb-atlas
created
# Building a Multi-Environment Continuous Delivery Pipeline for MongoDB Atlas ## Why CI/CD? To increase the speed and quality of development, you may use continuous delivery strategies to manage and deploy your application code changes. However, continuous delivery for databases is often a manual process. Adopting c...
md
{ "tags": [ "Atlas", "AWS", "Docker" ], "pageDescription": "In this blog, we’ll demonstrate how to set up CI/CD for MongoDB Atlas, in a typical production setting.", "contentType": "Tutorial" }
Building a Multi-Environment Continuous Delivery Pipeline for MongoDB Atlas
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/swiftui-previews
created
# Making SwiftUI Previews Work For You ## Introduction Canvas previews are an in-your-face feature of SwiftUI. When you create a new view, half of the boilerplate code is for the preview. A third of your Xcode real estate is taken up by the preview. Despite the prominence of the feature, many developers simply delet...
md
{ "tags": [ "Realm", "Swift", "Mobile", "iOS" ], "pageDescription": "Get the most out of iOS Canvas previews to improve your productivity and app quality", "contentType": "Article" }
Making SwiftUI Previews Work For You
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/real-time-data-architectures-with-mongodb-cloud-manager-and-verizon-5g-edge
created
# Real-time Data Architectures with MongoDB Cloud Manager and Verizon 5G Edge The network edge has been one of the most explosive cloud computing opportunities in recent years. As mobile contactless experiences become the norm and as businesses move ever-faster to digital platforms and services, edge computing is posi...
md
{ "tags": [ "MongoDB", "AWS" ], "pageDescription": "From real-time transaction processing, telemetry capture for your IoT application, or personalization using profile data for localized venue experiences, bringing MongoDB to the edge allows you to maintain the low latency characteristics of your applicat...
Real-time Data Architectures with MongoDB Cloud Manager and Verizon 5G Edge
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/adl-sql-integration-test
created
# Atlas Query Federation SQL to Form Powerful Data Interactions Modern platforms have a wide variety of data sources. As businesses grow, they have to constantly evolve their data management and have sophisticated, scalable, and convenient tools to analyse data from all sources to produce business insights. MongoDB h...
md
{ "tags": [ "MongoDB", "SQL" ], "pageDescription": "Learn how new SQL-based queries can power your Query Federation insights in minutes. Integrate this capability with powerful BI tools like Tableau to get immediate value out of your data. ", "contentType": "Article" }
Atlas Query Federation SQL to Form Powerful Data Interactions
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-serverless-quick-start
created
# MongoDB Atlas Serverless Instances: Quick Start MongoDB Atlas serverless instances are now GA (generally available)! What is a serverless instance you might ask? In short, *it’s an on-demand serverless database*. In this article, we'll deploy a MongoDB Atlas serverless instance and perform some basic CRUD operation...
md
{ "tags": [ "Atlas", "JavaScript", "Serverless", "Node.js" ], "pageDescription": "MongoDB Atlas serverless instances are now generally available! What is a serverless instance you might ask? In short, it’s an on-demand serverless database. In this article, we'll deploy a MongoDB Atlas serverless i...
MongoDB Atlas Serverless Instances: Quick Start
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-data-federation-out-aws-s3
created
# MongoDB Atlas Data Federation Tutorial: Federated Queries and $out to AWS S3 Data Federation is a MongoDB Atlas feature that allows you to query data from disparate sources such as: * Atlas databases. * Atlas Data Lake. * HTTP APIs. * AWS S3 buckets. In this tutorial, I will show you how to access your archived do...
md
{ "tags": [ "Atlas", "AWS" ], "pageDescription": "Learn how to use MongoDB Atlas Data Federation to query data from Atlas databases and AWS S3 and archive cold data to S3 with $out.", "contentType": "Tutorial" }
MongoDB Atlas Data Federation Tutorial: Federated Queries and $out to AWS S3
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/php/php-crud
created
# Creating, Reading, Updating, and Deleting MongoDB Documents with PHP Welcome to Part 2 of this quick start guide for MongoDB and PHP. In the previous article, I walked through the process of installing, configuring, and setting up PHP, Apache, and the MongoDB Driver and Extension so that you can effectively be...
md
{ "tags": [ "PHP", "MongoDB" ], "pageDescription": "Getting Started with MongoDB and PHP - Part 2 - CRUD", "contentType": "Quickstart" }
Creating, Reading, Updating, and Deleting MongoDB Documents with PHP
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/schema-suggestions-julia-oppenheim
created
# Schema Suggestions with Julia Oppenheim - Podcast Episode 59 Today, we are joined by Julia Oppenheim, Associate Product Manager at MongoDB. Julia chats with us and shares details of a set of features within MongoDB Atlas designed to help developers improve the design of their schemas to avoid common anti-patterns. ...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Today, we are joined by Julia Oppenheim, Associate Product Manager at MongoDB. Julia chats with us and shares details of a set of features within MongoDB Atlas designed to help developers improve the design of their schemas to avoid common anti-patterns. ", "cont...
Schema Suggestions with Julia Oppenheim - Podcast Episode 59
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-using-realm-sync-in-unity
created
# Turning Your Local Game into an Online Experience with MongoDB Realm Sync Playing a game locally can be fun at times. But there is nothing more exciting than playing with or against the whole world. Using Realm Sync you can easily synchronize data between multiple instances and turn your local game into an online ex...
md
{ "tags": [ "Realm", "Mobile" ], "pageDescription": "This article shows how to migrate from using a local Realm to MongoDB Realm Sync. We will cover everything you need to know to transform your game into a multiplayer experience.", "contentType": "Tutorial" }
Turning Your Local Game into an Online Experience with MongoDB Realm Sync
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/kotlin/realm-startactivityforresult-registerforactivityresult-deprecated-android-kotlin
created
# StartActivityForResult is Deprecated! ## Introduction Android has been on the edge of evolution for a while recently, with updates to `androidx.activity:activity-ktx` to `1.2.0`. It has deprecated `startActivityForResult` in favour of `registerForActivityResult`. It was one of the first fundamentals that any Andro...
md
{ "tags": [ "Kotlin" ], "pageDescription": "Learn the benefits and usage of registerForActivityResult for Android in Kotlin.", "contentType": "Article" }
StartActivityForResult is Deprecated!
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/enhancing-diabetes-data-visibility-with-tidepool-and-mongodb
created
# Making Diabetes Data More Accessible and Meaningful with Tidepool and MongoDB The data behind diabetes management can be overwhelming — understanding it all is empowering. Tidepool turns diabetes data points into accessible, actionable, and meaningful insights using an open source tech stack that incorporates MongoD...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Tapani Otala is the VP of Engineering at Tidepool, an open source, not-for-profit company focused on liberating data from diabetes devices, supporting researchers, and providing great, free software to people with diabetes and their care teams. He joins us today to...
Making Diabetes Data More Accessible and Meaningful with Tidepool and MongoDB
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/build-movie-search-application
created
# Tutorial: Build a Movie Search Application Using Atlas Search Let me guess. You want to give your application users the ability to find *EXACTLY* what they are looking for FAST! Who doesn't? Search is a requirement for most applications today. With MongoDB Atlas Search, we have made it easier than ever to integrate ...
md
{ "tags": [ "Atlas", "JavaScript" ], "pageDescription": "Check out this blog tutorial to learn how to build a movie search application using MongoDB Atlas Search.", "contentType": "Tutorial" }
Tutorial: Build a Movie Search Application Using Atlas Search
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-keypath-filtering
created
# Filter Realm Notifications in Your iOS App with KeyPaths ## Introduction Realm Swift v10.12.0 introduced the ability to filter change notifications for desired key paths. This level of granularity has been something we've had our eye on, so it’s really satisfying to release this kind of control and performance bene...
md
{ "tags": [ "Realm", "iOS" ], "pageDescription": "How to customize your notifications when your iOS app is observing Realm", "contentType": "Tutorial" }
Filter Realm Notifications in Your iOS App with KeyPaths
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/pause-resume-atlas-clusters
created
# How to Easily Pause and Resume MongoDB Atlas Clusters One of the most important things to think about in the cloud is what is burning dollars while you sleep. In the case of MongoDB Atlas, that is your live clusters. The minute you start a cluster (with the exception of our free tier), we start accumulating cost. I...
md
{ "tags": [ "Atlas" ], "pageDescription": "Learn how to easily pause and resume MongoDB Atlas clusters.", "contentType": "Article" }
How to Easily Pause and Resume MongoDB Atlas Clusters
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/time-series-candlestick
created
# Currency Analysis with Time Series Collections #1 — Generating Candlestick Charts Data ## Introduction Technical analysis is a methodology used in finance to provide price forecasts for financial assets based on historical market data. When it comes to analyzing market data, you need a better toolset. You will ha...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Time series collections part 1: generating data for a candlestick chart from time-series data", "contentType": "Tutorial" }
Currency Analysis with Time Series Collections #1 — Generating Candlestick Charts Data
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/go/golang-change-streams
created
# Reacting to Database Changes with MongoDB Change Streams and Go If you've been keeping up with my getting started with Go and MongoDB tutorial series, you'll remember that we've accomplished quite a bit so far. We've had a look at everything from CRUD interaction with the database to data modeling, and more. T...
md
{ "tags": [ "Go", "MongoDB" ], "pageDescription": "Learn how to use change streams to react to changes to MongoDB documents, databases, and clusters in real-time using the Go programming language.", "contentType": "Quickstart" }
Reacting to Database Changes with MongoDB Change Streams and Go
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/building-service-based-atlas-management
created
# Building Service-Based Atlas Cluster Management ## Developer Productivity MongoDB Atlas is changing the database industry standards when it comes to database provisioning, maintenance, and scaling, as it just works. However, even superheroes like Atlas know that with Great Power Comes Great Responsibility. For thi...
md
{ "tags": [ "Atlas" ], "pageDescription": "Learn how to build Service-Based Atlas Cluster Management webhooks/functionality with Atlas Admin API and MongoDB Realm.", "contentType": "Article" }
Building Service-Based Atlas Cluster Management
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/java/aggregation-expression-builders
created
# Java Aggregation Expression Builders in MongoDB MongoDB aggregation pipelines allow developers to create rich document retrieval, manipulation, and update processes expressed as a sequence — or pipeline — of composable stages, where the output of one stage becomes the input to the next stage in the pipeline. With a...
md
{ "tags": [ "Java" ], "pageDescription": "Learn how expression builders can make coding aggregation pipelines in Java applications faster and more reliable.", "contentType": "Tutorial" }
Java Aggregation Expression Builders in MongoDB
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/free-atlas-cluster
created
# Getting Your Free MongoDB Atlas Cluster **You probably already know that MongoDB Atlas is MongoDB as a service in the public cloud of your choice but did you know we also offer a free forever cluster? In this Quick Start, we'll show you why you should get one and how to create one.** MongoDB Atlas's Free Tier clust...
md
{ "tags": [ "Atlas", "Azure", "Google Cloud" ], "pageDescription": "Want to know the quickest way to start with MongoDB? It begins with getting yourself a free MongoDB Atlas Cluster so you can leverage your learning", "contentType": "Quickstart" }
Getting Your Free MongoDB Atlas Cluster
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/building-autocomplete-form-element-atlas-search-javascript
created
Recipe:
md
{ "tags": [ "Atlas", "JavaScript" ], "pageDescription": "Learn how to create an autocomplete form element that leverages the natural language processing of MongoDB Atlas Search.", "contentType": "Tutorial" }
Building an Autocomplete Form Element with Atlas Search and JavaScript
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/java/java-aggregation-pipeline
created
# Java - Aggregation Pipeline ## Updates The MongoDB Java quickstart repository is available on GitHub. ### February 28th, 2024 - Update to Java 21 - Update Java Driver to 5.0.0 - Update `logback-classic` to 1.2.13 ### November 14th, 2023 - Update to Java 17 - Update Java Driver to 4.11.1 - Update mongodb-crypt t...
md
{ "tags": [ "Java", "MongoDB" ], "pageDescription": "Learn how to use the Aggregation Pipeline using the MongoDB Java Driver.", "contentType": "Quickstart" }
Java - Aggregation Pipeline
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/serverless-with-cloud-run-mongodb-atlas
created
# Serverless MEAN Stack Applications with Cloud Run and MongoDB Atlas ## Plea and the Pledge: Truly Serverless As modern application developers, we’re juggling many priorities: performance, flexibility, usability, security, reliability, and maintainability. On top of that, we’re handling dependencies, configuration, ...
md
{ "tags": [ "Atlas", "JavaScript", "Docker", "Google Cloud" ], "pageDescription": "In this blog, we'll see how Cloud Run and MongoDB come together to enable a completely serverless MEAN stack application development experience.", "contentType": "Tutorial" }
Serverless MEAN Stack Applications with Cloud Run and MongoDB Atlas
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-data-api-google-apps-script
created
# Using the Atlas Data API with Google Apps Script > This tutorial discusses the preview version of the Atlas Data API which is now generally available with more features and functionality. Learn more about the GA version here. The MongoDB Atlas Data API is an HTTPS-based API which allows us to read and write data in...
md
{ "tags": [ "Atlas", "JavaScript" ], "pageDescription": "This article teaches you how to call the Atlas Data API from a Google Sheets spreadsheet using Google Apps Script.", "contentType": "Quickstart" }
Using the Atlas Data API with Google Apps Script
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-kotlin-041-announcement
created
# Realm Kotlin 0.4.1 Announcement In this blogpost we are announcing v0.4.1 of the Realm Kotlin Multiplatform SDK. This release contains a significant architectural departure from previous releases of Realm Kotlin as well as other Realm SDK’s, making it much more compatible with modern reactive frameworks like Kotlin ...
md
{ "tags": [ "Realm", "Kotlin", "Mobile" ], "pageDescription": "In this blogpost we are announcing v0.4.1 of the Realm Kotlin Multiplatform SDK. This release contains a significant architectural departure from previous releases of Realm Kotlin as well as other Realm SDK’s, making it much more compatibl...
Realm Kotlin 0.4.1 Announcement
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/node-crud-tutorial-3-3-2
created
# MongoDB and Node.js 3.3.2 Tutorial - CRUD Operations In the first post in this series, I walked you through how to connect to a MongoDB database from a Node.js script, retrieve a list of databases, and print the results to your console. If you haven't read that post yet, I recommend you do so and then return h...
md
{ "tags": [ "JavaScript", "MongoDB", "Node.js" ], "pageDescription": "Learn how to execute the CRUD (create, read, update, and delete) operations in MongoDB using Node.js in this step-by-step tutorial.", "contentType": "Quickstart" }
MongoDB and Node.js 3.3.2 Tutorial - CRUD Operations
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/code-examples/swift/build-command-line-swift-mongodb
created
# Build a Command Line Tool with Swift and MongoDBBuild a Command Line Tool with Swift and MongoDB ## Table of Contents - Introduction - TL;DR: - Goals - Prerequisites - Overview of Steps - Requirements for Solution - Launching Your Database Cluster in Atlas - Setting Up The Project - Looking at our Data - Integratin...
md
{ "tags": [ "Swift", "MongoDB" ], "pageDescription": "Build a Command Line Tool with Swift and MongoDB", "contentType": "Code Example" }
Build a Command Line Tool with Swift and MongoDBBuild a Command Line Tool with Swift and MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/capture-iot-data-stitch
created
# Capture IoT Data With MongoDB in 5 Minutes > Please note: This article discusses Stitch. Stitch is now MongoDB Realm. All the same features and functionality, now with a new name. Learn more here. We will be updating this article in due course. Capturing IoT (Internet of Things) data is a complex task for 2 main re...
md
{ "tags": [ "MongoDB", "JavaScript" ], "pageDescription": "Learn how to use MongoDB for Internet of Things data in as little as 5 minutes.", "contentType": "Article" }
Capture IoT Data With MongoDB in 5 Minutes
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/llm-accuracy-vector-search-unstructured-metadata
created
# Enhancing LLM Accuracy Using MongoDB Vector Search and Unstructured.io Metadata Despite the remarkable strides in artificial intelligence, particularly in generative AI (GenAI), precision remains an elusive goal for large language model (LLM) outputs. According to the latest annual McKinsey Global Survey, “The state...
md
{ "tags": [ "Atlas", "Python", "AI" ], "pageDescription": "This article provides a comprehensive guide on improving the precision of large language models using MongoDB's Vector Search and Unstructured.io's metadata extraction techniques, aiming to equip readers with the tools to produce well-sourced ...
Enhancing LLM Accuracy Using MongoDB Vector Search and Unstructured.io Metadata
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/how-to-use-custom-archival-rules-and-partitioning-on-mongodb-atlas-online-archive
created
# How to Use Custom Archival Rules and Partitioning on MongoDB Atlas Online Archive >As of June 2022, the functionality previously known as Atlas Data Lake is now named Atlas Data Federation. Atlas Data Federation’s functionality is unchanged and you can learn more about it here. Atlas Data Lake will remain in the Atl...
md
{ "tags": [ "Atlas" ], "pageDescription": "So you've set up a simple MongoDB Atlas Online Archive, and now you might be wondering, \"What's next?\" In this post, we will cover some more advanced Online Archive use cases, including setting up custom archival rules and how to improve query performance through p...
How to Use Custom Archival Rules and Partitioning on MongoDB Atlas Online Archive
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/create-data-api-10-min-realm
created
# Create a Custom Data Enabled API in MongoDB Atlas in 10 Minutes or Less ## Objectives - Deploy a Free Tier Cluster - Load Sample Data into your MongoDB Atlas Cluster - Create a MongoDB Realm application - Create a 3rd Party Service, an API with an HTTP service listener - Test the API using Postman ## Pre...
md
{ "tags": [ "Realm" ], "pageDescription": "Learn how to create a data API with Atlas Data API in 10 minutes or less", "contentType": "Tutorial" }
Create a Custom Data Enabled API in MongoDB Atlas in 10 Minutes or Less
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/how-build-healthcare-interoperability-microservice-using-fhir-mongodb
created
# How to Build a Healthcare Interoperability Microservice Using FHIR and MongoDB # How to Build a Healthcare Interoperability Microservice Using FHIR and MongoDB Interoperability refers to a system’s or software's capability to exchange and utilize information. Modern interoperability standards, like Fast Healthcare ...
md
{ "tags": [ "Atlas", "JavaScript" ], "pageDescription": "Learn how to build a healthcare interoperability microservice, secured with JWT using FHIR and MongoDB.", "contentType": "Tutorial" }
How to Build a Healthcare Interoperability Microservice Using FHIR and MongoDB
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-sdk-schema-migration-android
created
# How to Update Realm SDK Database Schema for Android > This is a follow-up article in the **Getting Started Series**. > In this article, we learn how to modify/migrate Realm **local** database schema. ## Introduction As you add and change application features, you need to modify database schema, and the need for mi...
md
{ "tags": [ "Realm", "Kotlin", "Java", "Android" ], "pageDescription": "In this article, we explore and learn how to make Realm SDK database schema changes. ", "contentType": "Tutorial" }
How to Update Realm SDK Database Schema for Android
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/code-examples/javascript/node-connect-mongodb-3-3-2
created
# Connect to a MongoDB Database Using Node.js 3.3.2 Use Node.js? Want to learn MongoDB? This is the blog series for you! In this Quick Start series, I'll walk you through the basics of how to get started using MongoDB with Node.js. In today's post, we'll work through connecting to a MongoDB database from a Node...
md
{ "tags": [ "JavaScript", "MongoDB", "Node.js" ], "pageDescription": "Node.js and MongoDB is a powerful pairing and in this code example project we show you how.", "contentType": "Code Example" }
Connect to a MongoDB Database Using Node.js 3.3.2
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/nodejs-change-streams-triggers
created
# Change Streams & Triggers with Node.js Tutorial Sometimes you need to react immediately to changes in your database. Perhaps you want to place an order with a distributor whenever an item's inventory drops below a given threshold. Or perhaps you want to send an email notification whenever the status of an ord...
md
{ "tags": [ "JavaScript", "MongoDB", "Node.js" ], "pageDescription": "Discover how to react to changes in your MongoDB database using change streams implemented in Node.js and Atlas triggers.", "contentType": "Quickstart" }
Change Streams & Triggers with Node.js Tutorial
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/visually-showing-atlas-search-highlights-javascript-html
created
Search
md
{ "tags": [ "Atlas", "JavaScript", "Node.js" ], "pageDescription": "Learn how to use JavaScript and HTML to show MongoDB Atlas Search highlights on the screen.", "contentType": "Tutorial" }
Visually Showing Atlas Search Highlights with JavaScript and HTML
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/mongodb-5-0-schema-validation
created
# Improved Error Messages for Schema Validation in MongoDB 5.0 ## Intro Many MongoDB users rely on schema validation to enforce rules governing the structure and integrity of documents in their collections. But one of the challenges they faced was quickly understanding why a document that did not match the schema cou...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Learn about improved error messages for schema validation in MongoDB 5.0.", "contentType": "News & Announcements" }
Improved Error Messages for Schema Validation in MongoDB 5.0
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/java/java-mapping-pojos
created
# Java - Mapping POJOs ## Updates The MongoDB Java quickstart repository is available on GitHub. ### February 28th, 2024 - Update to Java 21 - Update Java Driver to 5.0.0 - Update `logback-classic` to 1.2.13 ### November 14th, 2023 - Update to Java 17 - Update Java Driver to 4.11.1 - Update mongodb-crypt to 1.8.0...
md
{ "tags": [ "Java", "MongoDB" ], "pageDescription": "Learn how to use the native mapping of POJOs using the MongoDB Java Driver.", "contentType": "Quickstart" }
Java - Mapping POJOs
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/time-series-macd-rsi
created
# Currency Analysis with Time Series Collections #3 — MACD and RSI Calculation In the first post of this series, we learned how to group currency data based on given time intervals to generate candlestick charts. In the second article, we learned how to calculate simple moving average and exponential moving average on...
md
{ "tags": [ "MongoDB", "JavaScript" ], "pageDescription": "Time series collections part 3: calculating MACD & RSI values", "contentType": "Article" }
Currency Analysis with Time Series Collections #3 — MACD and RSI Calculation
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-kotlin-0-6-0
created
# Realm Kotlin 0.6.0. Realm Kotlin 0.6.0 ================== We just released v0.6.0 of Realm Kotlin. It contains support for Kotlin/JVM, indexed fields as well as a number of bug fixes. > **Build better mobile apps with Atlas Device Sync**: Atlas Device Sync is a fully-managed mobile backend-as-a-servi...
md
{ "tags": [ "Realm", "Kotlin" ], "pageDescription": "We just released v0.6.0 of Realm Kotlin. It contains support for Kotlin/JVM, indexed fields as well as a number of bug fixes.", "contentType": "News & Announcements" }
Realm Kotlin 0.6.0.
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/python/python-quickstart-sanic
created
# Getting Started with MongoDB and Sanic Sanic is a Python 3.6+ async web server and web framework that's written to go fast. The project's goal is to provide a simple way to get up and running a highly performant HTTP server that is easy to build, to expand, and ultimately to scale. Unfortunately, because of i...
md
{ "tags": [ "Python", "MongoDB" ], "pageDescription": "Getting started with MongoDB and Sanic", "contentType": "Quickstart" }
Getting Started with MongoDB and Sanic
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/connect-atlas-cloud-kubernetes-peering
created
# Securely Connect MongoDB to Cloud-Offered Kubernetes Clusters ## Introduction Containerized applications are becoming an industry standard for virtualization. When we talk about managing those containers, Kubernetes will probably be brought up extremely quickly. Kubernetes is a known open-source system for automat...
md
{ "tags": [ "Atlas", "Kubernetes", "Google Cloud" ], "pageDescription": "A high-level guide on how to securely connect MongoDB Atlas with the Kubernetes offerings from Amazon AWS, Google Cloud (GCP), and Microsoft Azure.", "contentType": "Tutorial" }
Securely Connect MongoDB to Cloud-Offered Kubernetes Clusters
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/introduction-realm-sync-android
created
# Introduction to Atlas Device Sync for Android * * * > Atlas App Services (Formerly MongoDB Realm ) > > Atlas Device Sync (Formerly Realm Sync) > * * * Welcome back! We really appreciate you coming back and showing your interest in Atlas App Services. This is a follow-up article to Introduction to Realm Java SDK fo...
md
{ "tags": [ "Realm", "Kotlin", "Android" ], "pageDescription": "Learn how to use Atlas Device Sync with Android.", "contentType": "News & Announcements" }
Introduction to Atlas Device Sync for Android
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/mongodb-network-compression
created
# MongoDB Network Compression: A Win-Win # MongoDB Network Compression: A Win-Win An under-advertised feature of MongoDB is its ability to compress data between the client and the server. The CRM company Close has a really nice article on how compression reduced their network traffic from about 140 Mbps to 65 Mpbs. A...
md
{ "tags": [ "MongoDB" ], "pageDescription": "An under advertised feature of MongoDB is its ability to compress data between the client and the server. This blog will show you exactly how to enable network compression along with a script you can run to see concrete results. Not only will you save some $, but y...
MongoDB Network Compression: A Win-Win
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-swiftui-maps-location
created
# Using Maps and Location Data in Your SwiftUI (+Realm) App ## Introduction Embedding Apple Maps and location functionality in SwiftUI apps used to be a bit of a pain. It required writing your own SwiftUI wrapper around UIKit code—see these examples from the O-FISH app: * Location helper * Map views If you only need...
md
{ "tags": [ "Realm", "Swift", "iOS" ], "pageDescription": "Learn how to use the new Map view from iOS Map Kit in your SwiftUI/Realm apps. Also see how to use iOS location in Realm, Atlas, and Charts.", "contentType": "Tutorial" }
Using Maps and Location Data in Your SwiftUI (+Realm) App
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/cidr-subnet-selection-atlas
created
# CIDR Subnet Selection for MongoDB Atlas ## Introduction One of the best features of MongoDB Atlas is the ability to peer your host VPC on your own Amazon Web Services (AWS) account to your Atlas VPC. VPC peering provides you with the ability to use the private IP range of your hosts and MongoDB Atlas cluster. This ...
md
{ "tags": [ "Atlas" ], "pageDescription": "VPC peering provides you with the ability to use the private IP range of your hosts and MongoDB Atlas cluster.", "contentType": "Tutorial" }
CIDR Subnet Selection for MongoDB Atlas
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/sql-to-aggregation-pipeline
created
# MongoDB Aggregation Pipeline Queries vs SQL Queries Let's be honest: Many devs coming to MongoDB are joining the community with a strong background in SQL. I would personally include myself in this subset of MongoDB devs. I think it's useful to map terms and concepts you might be familiar with in SQL to help "transl...
md
{ "tags": [ "MongoDB", "SQL" ], "pageDescription": "This is an overview of common SQL aggregation terms, functions, and concepts and the corresponding MongoDB aggregation operators.", "contentType": "Tutorial" }
MongoDB Aggregation Pipeline Queries vs SQL Queries
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/languages/javascript/capturing-hacker-news-mentions-nodejs-mongodb
created
# Capturing Hacker News Mentions with Node.js and MongoDB If you're in the technology space, you've probably stumbled upon Hacker News at some point or another. Maybe you're interested in knowing what's popular this week for technology or maybe you have something to share. It's a platform for information. The problem...
md
{ "tags": [ "JavaScript", "Node.js" ], "pageDescription": "Learn how to stream data from Hacker News into MongoDB for analyzing with Node.js.", "contentType": "Tutorial" }
Capturing Hacker News Mentions with Node.js and MongoDB
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/code-examples/swift/realm-api-cache
created
# Build Offline-First Mobile Apps by Caching API Results in Realm ## Introduction When building a mobile app, there's a good chance that you want it to pull in data from a cloud service—whether from your own or from a third party. While other technologies are growing (e.g., GraphQL and MongoDB Realm Sync), REST APIs ...
md
{ "tags": [ "Swift", "Realm", "iOS", "Mobile" ], "pageDescription": "Learn how to make your mobile app always-on, even when you can't connect to your API.", "contentType": "Code Example" }
Build Offline-First Mobile Apps by Caching API Results in Realm
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/getting-started-atlas-mongodb-query-language-mql
created
# Getting Started with Atlas and the MongoDB Query API > MQL is now MongoDB Query API! Learn more about this flexible, intuitive way to work with your data. Depending where you are in your development career or the technologies you've already become familiar with, MongoDB can seem quite intimidating. Maybe you're com...
md
{ "tags": [ "Atlas" ], "pageDescription": "Learn how to get started with MongoDB Atlas and the MongoDB Query API.", "contentType": "Quickstart" }
Getting Started with Atlas and the MongoDB Query API
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/mongodb/polymorphic-document-validation
created
# Document Validation for Polymorphic Collections In data modeling design reviews with customers, I often propose a schema where different documents in the same collection contain different types of data. This makes it efficient to fetch related documents in a single, indexed query. MongoDB's flexible schema is great ...
md
{ "tags": [ "MongoDB" ], "pageDescription": "A great feature of MongoDB is its flexible document model. But what happens when you want to combine that with controls on the content of the documents in a collection? This post shows how to use document validation on polymorphic collections.", "contentType": "A...
Document Validation for Polymorphic Collections
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/realm/realm-meetup-swiftui-testing-and-realm-with-projections
created
# Realm Meetup - SwiftUI Testing and Realm With Projections Didn't get a chance to attend the SwiftUI Testing and Realm with Projections Meetup? Don't worry, we recorded the session and you can now watch it at your leisure to get you caught up. :youtube]{vid=fxar75-7ZbQ} In this meetup, Jason Flax, Lead iOS Engineer...
md
{ "tags": [ "Realm", "Swift", "iOS" ], "pageDescription": "Learn how the testing landscape has changed for iOS apps using the new SwiftUI framework.", "contentType": "Article" }
Realm Meetup - SwiftUI Testing and Realm With Projections
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/code-examples/java/java-spring-data-client-side-field-level-encryption
created
# How to Implement Client-Side Field Level Encryption (CSFLE) in Java with Spring Data MongoDB ## GitHub Repository The source code of this template is available on GitHub: ```bash git clone git@github.com:mongodb-developer/mongodb-java-spring-boot-csfle.git ``` To get started, you'll need: - Java 17. - A MongoDB ...
md
{ "tags": [ "Java", "Spring" ], "pageDescription": "In this advanced MongoDB CSFLE Java template, you'll learn all the tips and tricks for a successful deployment of CSFLE with Spring Data MongoDB.", "contentType": "Code Example" }
How to Implement Client-Side Field Level Encryption (CSFLE) in Java with Spring Data MongoDB
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/mongodb/new-time-series-collections
created
# MongoDB's New Time Series Collections ## What is Time Series Data? Time-series data are measurements taken at time intervals. Sometimes time-series data will come into your database at high frequency - use-cases like financial transactions, stock market data, readings from smart meters, or metrics from services you...
md
{ "tags": [ "MongoDB" ], "pageDescription": "Learn all about MongoDB's new time series collection type! This post will teach you what time series data looks like, and how to best configure time series collections to store your time series data.", "contentType": "News & Announcements" }
MongoDB's New Time Series Collections
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/code-examples/swift/building-a-mobile-chat-app-using-realm-new-way
created
# Building a Mobile Chat App Using Realm – The New and Easier Way In my last post, I walked through how to integrate Realm into a mobile chat app in Building a Mobile Chat App Using Realm – Integrating Realm into Your App. Since then, the Realm engineering team has been busy, and Realm-Swift 10.6 introduced new featur...
md
{ "tags": [ "Swift", "Realm", "iOS", "Mobile" ], "pageDescription": "How to incorporate Realm into your iOS App. Building a chat app with SwiftUI and Realm Swift – the new and easier way to work with Realm and SwiftUI", "contentType": "Code Example" }
Building a Mobile Chat App Using Realm – The New and Easier Way
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/python/python-starlette-stitch
created
HOME! MongoBnB {% for property in response %} {{ property.name }} (Up to {{ property.guests }} guests) {{ property.address }} {{ property.s...
md
{ "tags": [ "Python" ], "pageDescription": "Learn how to build a property booking website in Python with Starlette, MongoDB, and Twilio.", "contentType": "Tutorial" }
Build a Property Booking Website with Starlette, MongoDB, and Twilio
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-data-api-excel-power-query
created
# Using the Atlas Data API from Excel with Power Query ## Data Science and the Ubiquity of Excel > This tutorial discusses the preview version of the Atlas Data API which is now generally available with more features and functionality. Learn more about the GA version here. When you ask what tools you should learn to...
md
{ "tags": [ "Atlas", "JavaScript", "Excel" ], "pageDescription": "This Article shows you how to run Queries and Aggregations again MongoDB Atlas using the Power Query function in Microsoft Excel.", "contentType": "Quickstart" }
Using the Atlas Data API from Excel with Power Query
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/multiple-mongodb-connections-in-a-single-application
created
# Multiple MongoDB Connections in a Single Application MongoDB, a popular NoSQL database, is widely used in various applications and scenarios. While a single database connection can adequately serve the needs of numerous projects, there are specific scenarios and various real-world use cases that highlight the advant...
md
{ "tags": [ "Atlas", "JavaScript", "Node.js" ], "pageDescription": "", "contentType": "Tutorial" }
Multiple MongoDB Connections in a Single Application
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/products/atlas/cloudflare-worker-rest-api
created
# Create a REST API with Cloudflare Workers and MongoDB Atlas ## Introduction Cloudflare Workers provides a serverless execution environment that allows you to create entirely new applications or augment existing ones without configuring or maintaining infrastructure. MongoDB Atlas allows you to create, manage, and ...
md
{ "tags": [ "Atlas", "TypeScript", "Serverless", "Cloudflare" ], "pageDescription": "Learn how to create a serverless REST API using Cloudflare workers and MongoDB Atlas.", "contentType": "Tutorial" }
Create a REST API with Cloudflare Workers and MongoDB Atlas
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/realm/authentication-ios-apps-apple-sign-in-atlas-app-services
created
# Authentication for Your iOS Apps with Apple Sign-in and Atlas App Services Mobile device authentication serves as the crucial first line of defense against potential intruders who aim to exploit personal information, financial data, or private details. As our mobile phones store a wealth of sensitive information, it...
md
{ "tags": [ "Realm", "Swift", "Mobile", "iOS" ], "pageDescription": "Learn how to implement Apple sign-in within your own iOS mobile applications using Swift and MongoDB Atlas App Services.", "contentType": "Tutorial" }
Authentication for Your iOS Apps with Apple Sign-in and Atlas App Services
2024-05-20T17:32:23.501Z
devcenter
https://www.mongodb.com/developer/products/atlas/atlas-data-api-introduction
created
# An Introduction to the MongoDB Atlas Data API # Introduction to the MongoDB Atlas Data API There are a lot of options for connecting to MongoDB Atlas as an application developer. One of the newest options is the MongoDB Atlas Data API. The Atlas Data API provides a lightweight way to connect to MongoDB Atlas that ca...
md
{ "tags": [ "Atlas" ], "pageDescription": "This article introduces the Atlas Data API and describes how to enable it and then call it from cURL.", "contentType": "Article" }
An Introduction to the MongoDB Atlas Data API
2024-05-20T17:32:23.500Z
devcenter
https://www.mongodb.com/developer/languages/python/python-quickstart-fle
created
# Store Sensitive Data With Python & MongoDB Client-Side Field Level Encryption With a combination of legislation around customer data protection (such as GDPR), and increasing legislation around money laundering, it's increasingly necessary to be able to store sensitive customer data *securely*. While MongoDB's de...
md
{ "tags": [ "Python", "MongoDB" ], "pageDescription": "Store data securely in MongoDB using Client-Side Field-Level Encryption", "contentType": "Quickstart" }
Store Sensitive Data With Python & MongoDB Client-Side Field Level Encryption
2024-05-20T17:32:23.501Z