문제

Maybe a silly question :)

If we use separate physical servers for Application and Database, when using Traversal framework, which one of the servers should support the queries (DB or Application)?

도움이 되었습니까?

해결책

Neo4j traversals run on the Neo4j database server, if you are using the server version of Neo4j.

다른 팁

Disclaimer: I'm building a similar system right now, so my view is probably biased.

My Node.js Application server provides an Angular app from the /public folder. The client application speaks only to the Application server.

Generally it works like this: Client sends a message to Server. Server returns a promise to client. Server queries the DB, performs any necessary manipulation to the data. Server resolves the promise. Client interprets the response.

hope that's helpful.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top