Ilan Y
Ilan Y

Reputation: 107

Neo4jclient transaction support

Does neo4jclient work through the REST endpoint or does neo4jclient interact natively with the neo4j server?

I know neo4j has a rest endpoint and am doubting it's performance for scalability.

Upvotes: 0

Views: 215

Answers (1)

Tatham Oddie
Tatham Oddie

Reputation: 4290

It uses the Cypher HTTP API mainly. The only way to not go over HTTP is to run in-process, which isn't really possible from .NET. Another option to investigate is server plugins.

Upvotes: 2

Related Questions