Como usar corretamente shouldCompactOnLaunch no RealmSwift

O exemplo na documentação (https://realm.io/docs/swift/latest/#compacting-realms) não está muito claro para mim, pois não sei se a compactação pode ser chamada o tempo todo durante o uso do aplicativo ou apenas uma vez na inicialização. A implementação abaixo está correta ou seria melhor fazer uma configuração separada, incluindo shouldCompactOnLaunch para chamar uma vez ao iniciar o aplicativo.

Se eu adicionar shouldCompactOnLaunch à configuração padrão, vejo o bloco sendo chamado toda vez que eu criar uma instância de região.

        Realm.Configuration.defaultConfiguration = Realm.Configuration(schemaVersion: schemaVersion, migrationBlock: migrationBlock,shouldCompactOnLaunch: { totalBytes, usedBytes in
        // totalBytes refers to the size of the file on disk in bytes (data + free space)
        // usedBytes refers to the number of bytes used by data in the file

        // Compact if the file is over 100MB in size and less than 50% 'used'
        let oneHundredMB = 100 * 1024 * 1024
        print ("totalbytes \(totalBytes)")
        print ("usedbytes \(usedBytes)")
        if (totalBytes > oneHundredMB) && (Double(usedBytes) / Double(totalBytes)) < 0.7{
            print("will compact realm")
        }
        return (totalBytes > oneHundredMB) && (Double(usedBytes) / Double(totalBytes)) < 0.7
    })
    do {
        // Realm is compacted on the first open if the configuration block conditions were met.
        _ = try Realm(configuration: config)
    } catch {
        // handle error compacting or opening Realm
    }

E mais uma coisa seria interessante para mim: o que acontece se a compactação falhar? Muito pouco armazenamento seria uma razão. Ainda poderei acessar os dados e a compactação será ignorada?

questionAnswers(2)

yourAnswerToTheQuestion