Domanda

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.

È stato utile?

Soluzione

They are not executed in parallel but sequentially.

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top