/// <summary> /// Update or insert a collection of objects. Items are fed by package to optimize network transport. /// For new items an optimized bulk insert algorithm is used /// This method is transactional on a single node cluster /// </summary> /// <param name="items"></param> public void PutMany(IEnumerable <T> items) { _client.FeedMany(items); }
/// <summary> /// Update or insert a collection of objects. Items are fed by package to optimize network transport. /// For new items an optimized bulk insert algorithm is used /// This method is transactional on a single node cluster /// </summary> /// <param name="items"></param> public void PutMany(IEnumerable <T> items) { _client.FeedMany(items, false, 10000); }