I need to put a lot of entries from List<Person> into elasticsearch via NEST library.
I can put one by one using loop and code below:
var person = new Person
{
Id = "1",
Firstname = "Martijn",
Lastname = "Laarman"
};
var index = client.Index(person);
But seems like it works really slow. Is there any way for doing that more quickly via NEST?