I want to save more than 1 records at one time that means save block of records.
Is it possible in mongoDB. if yes plz some one tell.
Thanks
I want to save more than 1 records at one time that means save block of records.
Is it possible in mongoDB. if yes plz some one tell.
Thanks
The java driver's DBCollection
supports insert
with a List<DBObject>
parameter this should be usable from scala as well.
Edit
Cabash also supports a similar insert
method that should do the trick.