Realm Meetup: Realm Sync in use - Building and Architecting a Mobile Chat App.

Поделиться
HTML-код
  • Опубликовано: 17 фев 2021
  • In this meetup recording, Andrew Morgan, a Staff Engineer at MongoDB, will walk you through the thinking, architecture and design patterns used in building a Mobile Chat App on iOS using MongoDB Realm Sync. The Chat app is used as an example, but the principles can be applied to any mobile app where sync is required. Andrew will focus on the data architecture, both the schema and the partitioning strategy used and after this session, you will come away with the knowledge needed to design an efficient, performant, and robust data architecture for your own mobile app.
    Subscribe to MongoDB ►►► bit.ly/3bpg1Z1
    Connect with MongoDB:
    Website: bit.ly/2LjtNBZ
    Twitter: bit.ly/3fH87gR
    Facebook: bit.ly/3fEaIsd
    Linkedin: bit.ly/2SY9w90
    Instagram: bit.ly/3bn9bDv
    Community Forums: bit.ly/2I8VCi5
    TikTok: bit.ly/3fHoqdJ
  • НаукаНаука

Комментарии • 12

  • @davidagyakwa288
    @davidagyakwa288 3 года назад +7

    great video ....Realm is great ....but there are not many examples on it...as a newbie in mongo and realm I hope to see more of this ...so I can use it for my dart(flutter) swift(swiftui) and go(wails) projects

    • @AndrewMorgan101
      @AndrewMorgan101 3 года назад +2

      Hi David, thanks for the feedback! We'll definitely be ramping up the number of example apps and content that we produce - and SwiftUI will be my focus.

  • @kushagrasharma1356
    @kushagrasharma1356 2 года назад

    Hi ! Can Anyone tell me how can i use realm to store assets locally on device?(not user data )

  • @KurtLibby
    @KurtLibby 3 года назад +1

    Looking for the source code for this? I'm running into quite a few problems trying to go from "the old way" to "the new way" of opening synced Realms in Realm Cocoa 10.6.0. Would really appreciate some documentation or examples that include sync to be updated. Maybe they are and I'm just not able to find them yet? Let us know when/where to look. Thanks!

    • @KurtLibby
      @KurtLibby 3 года назад

      In case anyone else is searching, I found a documented walkthrough of this at developer.mongodb.com/how-to/building-a-mobile-chat-app-using-realm/

    • @MongoDB
      @MongoDB  3 года назад

      Kurt - the repo is here - github.com/realm/RChat

  • @eltonfernandes9337
    @eltonfernandes9337 3 года назад

    What tool was used to create the BD diagram ??

    • @AndrewMorgan101
      @AndrewMorgan101 3 года назад

      It was manually created using a LucidCharts template - unfortunately, not auto-generated.

  • @damienbabington6765
    @damienbabington6765 3 года назад +1

    When I try to create the embedded object classes, I get this error: "Cannot find type 'EmbeddedObject' in scope"
    Also, in the Conversation class, when I'm inheriting from EmbeddedObject and ObjectKeyIdentifiable, I get the error mentioned above along with this error: "'ObjectKeyIdentifable' requires that 'Conversation' inherit from 'Object'"
    Lastly, when I'm trying let app = RealmSwift.App(id: ""), I'm getting this: "Module 'RealmSwift' has no member named 'App'". I've imported RealmSwift and Combine as shown, so I don't know why it's not working. I can't find any answers online unfortunately.
    Does anyone know how I can fix these errors?