DataKernel
CoreStore
DataKernel | CoreStore | |
---|---|---|
- | 11 | |
18 | 3,989 | |
- | - | |
0.0 | 3.2 | |
over 5 years ago | 2 months ago | |
Swift | Swift | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
DataKernel
We haven't tracked posts mentioning DataKernel yet.
Tracking mentions began in Dec 2020.
CoreStore
-
Core data example
It’s not from Apple, but there’s a framework called CoreStore which you might find easier to pick up initially.
-
How to manage instances of a class
Core Data (and CoreStore, which is backed by Core Data) is an object persistence system (so objects can survive between application sessions), which lets you work with the objects in a more database-like way. For example, you can ask for all the instances of a Person object which match a predicate like the pets relationship is not nil. You can think of it like a more advanced version of arrays and sets.
-
Details View using CoreData
If you’re just starting out with Core Data, you may want to take a look at CoreStore. It’s an external dependency, but it does feel much more at home in Swift. Less of the constant optional unwrapping, for one.
-
Finally acquainting myself with CoreData after 10 years of mostly avoiding it. Very heavy obj-c baggage. Anyone recommend a wrapper?
CoreStore (though iCloud support is still in the works)
-
Items appended in an array are not remembered after restart.
More complicated than that is Core Data. It’s extremely powerful, but pretty weird to use at first. Doesn’t feel very Swift-y (Check out CoreStore for a more Swift feel). This is great for hundreds or thousands of objects. You can retrieve objects which match a particular search predicate, objects can have relationships to one another (e.g, a manager object can have an employees relationship to multiple employee objects), which you can traverse a lot like normal objects-which-contain-objects. This is massive overkill for storing strings, but great for something like a Twitter or Reddit client.
-
CoreData: the burden of the past
All the issues in the article had been solved by CoreStore since Swift’s inception. Check it out
- Store data and update it
-
Swift Playgrounds iPad - Core Data?
CoreStore works really well for pure Swift models: https://github.com/JohnEstropia/CoreStore/blob/develop/Playground_iOS.playground/Contents.swift
-
Realm vs CoreData in 2021. Which do you use and why?
CoreData through CoreStore. Full disclosure: I’m the author of the lib
-
Do you feel that NSFetchedResultsController doesn't fit well with diffable data source?
Source: I am the author of the CoreStore library. The faulting behavior of NSManagedObjects are what makes them incompatible with redux-type architecture (ex: SwiftUI) which is why CoreStore exposes an ObjectSnapshot as a struct wrapper layer for live objects.
What are some alternatives?
JSQCoreDataKit - A swifter Core Data stack
encrypted-core-data - v2.0 - iOS Core Data encrypted SQLite store using SQLCipher
Graph - Graph is a semantic database that is used to create data-driven applications.
Realm - Realm is a mobile database: a replacement for Core Data & SQLite
JustPersist - JustPersist is the easiest and safest way to do persistence on iOS with Core Data support out of the box. It also allows you to migrate to any other persistence framework with minimal effort.
QueryKit - A simple CoreData query language for Swift and Objective-C.
Cadmium - A Swift framework that wraps CoreData, hides context complexity, and helps facilitate best practices.
MagicalRecord - Super Awesome Easy Fetching for Core Data!
CoreDataOperation - A fast, safe, flexible operation class for updating data stored in Core Data, written in Swift.
AlecrimCoreData