0

NSDictionaryのキーのオブジェクトを使用したクエリとCoreDataのフェッチリクエストのパフォーマンスに違いはありますか?同じ方法で保存することにパフォーマンスの違いはありますか?

コードの設計や構成ではなく、パフォーマンスについてのみ質問していることに注意してください。

ありがとう!

4

1 に答える 1

0

An NSDictionary is stored entirely within RAM memory. Core Data could be stored in a SQLite database which could cause a bit of latency that you would not get from just an NSDictionary.

于 2012-08-27T13:55:44.027 に答える