user3566301
user3566301

Reputation: 172

Cakephp and neo4j datasource

I have a question about the neo4j drivers.First of all, I am using CakePHP as a framework and Neo4j graph database.I want to connect neo4j and cakephp but there are no driver or datasource.I tried to implement Neo4j offical driver for Php but It's not worked because of namespaces.The Cakephp not found classes which is related or extended in that driver.How can I fix them? Also, If there are any datasource for cakephp how can I found them?

Upvotes: 1

Views: 669

Answers (1)

Roninio
Roninio

Reputation: 1771

If you would like to run faster i would just work with the neo4j api.

http://docs.neo4j.org/chunked/stable/rest-api.html

from your code make direct requests to the api. It is not much work and easier to maintain.

Upvotes: 1

Related Questions