Hi,
SDN has not really be optimized for REST mode, but for Embedded.
My use case is simple:
Storing 10 items in *one single roundtrip* from my server to my Neo4j
server using REST.
The conceptual code would be:
Transaction tx = graphDatabaseService.beginTx();
for(int i=0; i < 10; i++) {
itemRepository.save(myNewItemsCollection[i]); //batching or not?
}
tx.success();
tx.close();
Would it be automatically batch, in order to save bandwith and insert
faster ?
Thanks a lot,
Michael
--
You received this message because you are subscribed to the Google Groups
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.