Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Josh Adell's Blog:
Path finding with Neo4j
Jun 28, 2011 @ 17:38:01

In a follow up to his previous post on using Neo4j with PHP, Josh Adell looks in a bit more detail about how to find paths in the data via a REST interface to the database.

The thing that makes graphing databases useful is the ability to find relationship paths from one node to another. There are many algorithms for finding paths efficiently, depending on the use case.

He includes some code showing the REST request (made via this client) to fetch these street-based relationships. He then creates a little sample script that provides driving directions from one intersection to another with a "findPathsTo" call. He modifies it a bit later on to use the Dijkstra algorithm.

tagged: path find neo4j graph database tutorial rest client

Link:


Trending Topics: