Creating big amount of Sitecore Items causes memory leak
I have a Sitecore application where I need to create a large number of Sitecore items in a loop from another system. Below is my testing purpose loop; using (new Sitecore.SecurityModel.SecurityDisabler()) { for (int i = 0; i < 20000; i++) { Item newItem = MyTemplateItem.CreateItemFrom(DateTime.Now.Ticks.ToString(), myParentItem); newItem.Editing.BeginEdit(); newItem.Fields["Title"].Value = Guid.NewGuid().ToString(); newItem.Editing.EndEdit(); } } When this loop is running and while looking in task manager, the process memory usage is getting increased with the time. Sitecore Item class has not