SwiftData
developer.apple.com
SwiftData
1–10 of 109 posts
Re: SwiftData
#2Re: SwiftData
#3Noob here, how does SwiftData compare to Redux (as a paradigm)?
Re: SwiftData
#4Noob here, how does SwiftData compare to Redux (as a paradigm)?
SwiftData is the Swift version of Apple's CoreData, which is pretty much a database ORM.
It's a massive improvement on the old APIs that were written decades ago for Obj-C.
Re: SwiftData
#5Re: SwiftData
#6Noob here, how does SwiftData compare to Redux (as a paradigm)?
Looks pretty different. Much closer to more modern state management approaches such as Recoil and Jotai.
Swift Data is just a framework to annotate data structures to be stored by Core Data.
It looks a lot like an ORM.
Re: SwiftData
#7It’d be interesting to see a performance comparison of SwiftData vs. (objc?) CoreData vs. plain XML for large datasets. I recall plain XMLs being faster than CoreData a few years ago in certain scenarios.