我目前正在迭代一组对象并逐个保存它们。我想有一种方法可以直接保存整个集合吗?
注意,我需要能够稍后检索每个单独的对象(而不是整个集合)。
答案 0 :(得分:2)
来自DataStore类的javadoc。可能在旧版本上不可用。即便如此,我认为内部迭代并一次保存一个 - 但它可能会得到优化,因此最好使用它而不是自己迭代。
<T> Iterable<Key<T>>
save(Iterable<T> entities)
Saves the entities (Objects) and updates the @Id field
<T> Iterable<Key<T>>
save(Iterable<T> entities, com.mongodb.WriteConcern wc)
Saves the entities (Objects) and updates the @Id field, with the WriteConcern
<T> Iterable<Key<T>>
save(T... entities)
Saves the entities (Objects) and updates the @Id field