Neo4jPhp too slow
问题 Today i have written first basic program for Neo4j from PHP. This was basically done to check out if we could use Neo4j in our new project from PHP by using Neo4jPhp. https://github.com/jadell/neo4jphp here is my code <!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php include 'neo4jphp.phar'; echo "Hello World!"; // Connecting to the default port 7474 on localhost $client = new Everyman\Neo4j\Client(); $queryString = "MATCH (n)". "RETURN n"; $query = new Everyman\Neo4j\Cypher