我想我在某处读过它说 Realm 对象中的 primaryKey 已编入索引。
但是,如果我手动声明 indexedProperties 是否会覆盖 primaryKey 上的索引,并且我需要手动将 primaryKey 包含到索引列表中?
文档 here没有说这件事。
Best Answer-推荐答案 strong>
来自 Realm 的 Katsumi。主键属性将被自动索引。
见 https://github.com/realm/realm-object-store/blob/a7edffdec9795d3371838daf2b14641d72825698/src/property.hpp#L51
因此,如果属性是主键,则不需要指定索引。但是同时指定索引和主键没有问题/影响。
关于ios - Realm 索引和主键,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38673187/
|