I am trying to perform a massive data insertion in Realm, but it is doing it very slowly.
this is my code:
let realm = try! Realm()
let group = GroupRealm()
group.id = 1
group.name = "test"...
I am trying to make a query that gives me the total sum of percent associated with a id_character , here are my classes
I have a class like this:
class DBCharacter: Object
{
dynamic var id_character:String = ""
override...