Junior — Middle
What types of databases or data stores can Core Data use to save information?
sobes.tech AI
Answer from AI
Core Data uses several types of stores for data persistence:
- SQLite: the most common type, data is stored in an SQLite database, providing good performance and query capabilities.
- Binary Store: data is stored in a binary file, suitable for small amounts of data but does not support complex queries.
- In-Memory Store: data is stored in RAM, used for temporary data or testing.
The choice of store depends on the application's requirements for performance, volume, and data type.