2012-09-12 85 views

回答

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 

http://morphia.googlecode.com/svn/site/morphia/apidocs/com/google/code/morphia/Datastore.html#save(java.lang.Iterable

相關問題