I'm using an encrypted CoreData framework that was recommend.
I noticed that the shm and wal files are missing from the documents directory. I did some research and it seems like they are temporary files that the SQLite data base uses.
Are they removed for security reasons or did I do something wrong ?
Here is my persistent store coordinator from my CoreData Stack.
private lazy var psc: NSPersistentStoreCoordinator = {
let coordinator = EncryptedStore.makeStore(self.managedObjectModel, passcode: "1Gd3-dflv19902-dfj")
return coordinator
}()