nice to help others
CRUD Operation Using RealmSwift database Part 1
In this part, we will Cover: What is Realm RealmSwift Creating a Complex Realm Model Why we use @objc and dynamic in Property To-One and To-Many Relationship in Realm How to store Custom enum in Realm What is RealmOptional and How to Store Swift Optional Atomic Property How Computed Property works as Transient Property In realm How to do indexing for performance gain What is Linking Object in Realm Complex Predicate Queries CRUD Operation What is Live Results in Realm Things avoided when Modify Realm Objects Realm Realm is a cross-platform mobile object database. It’s very fast, performant and easy to use as compared to Core Data and Sqlite. It uses its storage mechanism to store object as JSON on disk as compared to Core Data that uses Sqlite as its backend. It is written in cross-platform C++ so it works exactly the same way on Android, iOS, macOS or any other platform. RealmSwift Most of Realm is open-source, but the secret sauce behind Realm’s platform is the Core DB en...
Comments
Post a Comment