I'm trying to insert a single node in my graph without any relationships and it takes 1/10 sec, so when I need to insert 10 nodes that should take 1 sec which is a lot comparing with some results I found in my google search for some people who claim to insert 30k nodes in 1 sec.
I use the neo4jclient with cypher queries to do that :
gclient.Cypher
.Create("(p:Post {newPost})")
.WithParams((new
{
newPost = post
}))
.ExecuteWithoutResults();
Is there something I miss ? thanks in advance
Edit : I'm using neo4jclient with .net .