I keep getting crashes with the following error in Xcode 15 beta 7:
CoreData: debug: PostSaveMaintenance: fileSize 15009192 greater than prune threshold
CoreData: annotation: PostSaveMaintenance: wal_checkpoint(TRUNCATE)
Is 15M bytes too much data?
I keep getting crashes with the following error in Xcode 15 beta 7:
CoreData: debug: PostSaveMaintenance: fileSize 15009192 greater than prune threshold
CoreData: annotation: PostSaveMaintenance: wal_checkpoint(TRUNCATE)
Is 15M bytes too much data?
This appears to indicate that too many changes were made to the database without calling ModelContext::save().
I had the same issue and this solution, increasing ModelContext:: save(), has solved the problem. Thank you!