Question

If I use Neo4j REST Batch endpoint, are the requests in the same batch executed in parallel? I suspect not, because how else would one request be able to refer to another in the same batch? But I haven't been able to find any documentation that clearly states one way or the other, and I am trying to make a recommendation to someone else about the performance of REST batches vs. transactional Cypher.

Was it helpful?

Solution

They are not executed in parallel but sequentially.

But they are streamed, if you use the header: X-Stream:true

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top