I'm currently working on the implementation of a social network. The architecture is:
- Distributed C++/Qt clients
- Neo4j server database
I could directly query the database since it has a REST interface from my Qt apps. I'm not quite comfortable with this approach because, it is not secured, and no optimizations (caching requests) are possible.
What server/architecture should I use for managing requests from the clients ?
I am more Python than Java but here speed matters.
And do you think REST is fast enough or should I use RPC ? In the last scenario, it means I should develop my own server implementation for the database.
Thanks!