Ember Data's DS.RESTAdapter
includes a bulkCommit
property. I can't find any documentation about what this does/means, other than some vague references to batch committing vs bulk committing.
Initially I assumed it would mean I could only update a single record at a time, but I currently have it set to false
, and I'm still able to update multiple records at the same time using:
this.get('store').commit();
So what is the difference between setting bulkCommit
to false and setting it to true
? In what situation would I use one instead of the other?