是否可以创建自定义核心数据持久存储协调器?
我很好奇是否可以创建一个自定义持久存储协调器,以便您可以使用 Core Data 与不同的存储系统(即 Windows Azure 或 S3)进行交互。任何帮助将不胜感激,因为我无法找到有关自定义持久存储协调器的任何信息。
I'm curious if it is possible to create a custom Persistent Storage Coordinator so that you could use Core Data to interact with different storage systems, i.e. Windows Azure or S3. Any help would be appreciated as I haven't been able to find any information about custom Persistent Storage Coordinators.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看 iOS5 中对 NSIncrementalStore 和 NSIncrementalStoreNode 的新支持(请参阅 文档)。这些允许您实现对非原子持久存储的支持,例如作为核心数据后端的 Web 服务。
You might want to look at the new support for NSIncrementalStore and NSIncrementalStoreNode in iOS5 (see documentation). These allow you to implement support for non-atomic persistent stores such as web services as a back-end for Core Data.