I'm comparing performance of cypher queries between REST API and embedded 
DB.

The cypher querry is as follows. The query returns 2-depth friends.
MATCH src-[:KNOWS*1..2]-dest 
WHERE src.name="me"
RETURN DISTINCT dest.name

I created about 1,000 threads and compared the results.

Embedded DB uses GraphDatabaseService and ExecutionEngine to query.
REST API uses RestGraphDatabase and RestCypherQueryEngine to query.

The result shows embedded DB is significantly faster than REST API.

Are there any settings I haven't set for better performance of REST API?

Any helpful comments will be appreciated. Thank you.

-- 
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.

Reply via email to