Docs Menu

Docs HomeRealm

Introduction to Realm

On this page

  • What Problem Does Realm Solve?
  • Realm
  • Sync Data with MongoDB Atlas
  • Use Atlas App Services
  • Get Started with Realm
  • Summary

This introduction explains Realm for mobile application developers. After reading, you should understand:

  • What Realm is and what problems it solves.

  • Reasons to use Atlas Device Sync to synchronize application data with MongoDB.

  • Ways to use the Realm SDKs with Atlas App Services to work with your application data.

Mobile developers face a number of unique challenges. You must:

  • Handle the unpredictable environment of mobile apps. Connections can be lost, devices can shut down at any time, and clients often update long after release.

  • Maintain common data schemas and APIs between mobile clients, backend APIs, and databases.

  • Stay aware of security vulnerabilities across all components in an ecosystem.

  • Consistently serialize objects between networks, database storage, and application memory.

  • Program in the languages and frameworks for one or more mobile operating systems.

All of these challenges present different obstacles. You can solve each in isolation with a wide variety of libraries and frameworks. Deciding the right solution for each problem with the right tradeoffs is a challenge mobile developers know all too well.

The combination of multiple environments creates even more challenges. For instance, you can use a Java library on your Android client to serialize objects, but that library likely wouldn't work on iOS. And this doesn't even take into account consistency across backend services.

Many of these challenges arise due to particularities of the mobile environment. These challenges include network reliability, local storage, and keeping UIs reactive. Realm solves many common mobile programming headaches:

  • Local storage: Realm runs right on client devices. Access objects using the native query language for each platform. Storing, accessing, and updating your data is simple and lightweight.

  • Network reliability: Realm is offline-first. You always read from and write to the local database, not over the network. When Device Sync is enabled, Realm synchronizes data with App Services over the network in a background thread. The sync protocol resolves conflicts consistently on each client and in the linked Atlas cluster.

  • Reactive UI: Live objects always reflect the latest data stored in Realm. You can subscribe to changes, letting you keep your UI consistently up to date.

The Realm SDKs connect to local realms for Android, iOS, Node.js, React Native, Flutter, and UWP development.

Client applications generate a lot of data. Whether it's uploaded reviews and ratings, posts and comments on a blog, or inventory in a kitchen, you need to store that data somewhere.

The Realm SDKs use Atlas Device Sync to synchronize app data between clients and MongoDB Atlas. Atlas Device Sync handles network access and conflict resolution in a background thread of your application, so your application logic stays the same regardless of network conditions.

Once your client data is in Atlas, you can leverage the full Atlas developer data platform. Perform aggregations and other complex workloads with the full capabilities of MongoDB. Or connect your Atlas instance to Charts to visualize your data in real time. Storing your data in Atlas makes it easy to share data across users and platforms.

The Realm SDKs integrate with App Services to easily and securely work with data from your app:

Learn more about the Realm SDKs:

  • Realm is an offline-first mobile object database in which you can directly access and store live objects without an ORM.

  • Live Objects always reflect the latest state of data in the database, which simplifies keeping your UI in sync with changes to your data.

  • Atlas Device Sync synchronizes data between client-side realms and the server-side MongoDB Atlas cluster linked to your app. Realm synchronizes data in a background thread, abstracting away network usage so you don't have to worry about latency or dropped connections.

  • The Realm SDKs integrate with App Services to easily and securely work with your data in Atlas.

←  Welcome to the Realm DocsC++ SDK Preview →
Share Feedback