Server Side Swift 에서 Memory 해제가 안되어 무한 증가할 때 조치 법
몽고디비에 자료를 가져와서 가공을 한 뒤에 다시 몽고디비에 자료를 저장하는 프로그램을 서버용 스위프트로 작성하였다. 하지만 아래와 같이 작성했을 때는 실행을 하면 메모리 해제가 안되어 무한증식하는 상태가 발생되었다. import Foundation import MongoKitten do { let mongo = try Server("mongodb://localhost:27017") let db = mongo["db"] if mongo.isConnected { print("connected successfully to server") } let collection = db["collection"] let docu: Document = [] let query = Query(docu) var textLog = TextLog() do { for entity in try collection.find(query) { trainLocations.forEach { textLog.write("\($0.date.Format(into: "yyyy-MM-dd HH:mm:ss Z")) \n") } } //end_for entity in try collection.find(query) } catch { print("error -> \(error.localizedDescr...