Can I use the Neo4j database in an Android app?

Will there be an error if I use the Neo4j database for my Android application? If so, can anyone suggest me any other Graphics database that will be used as the back of the Android app.

+4
source share
1 answer

Yes. Although Neo4J offers a REST API for querying a database with Cypher , I would recommend creating a custom layer on top of this to handle requests from Android, and then filter and forward to Neo4J.

This level will allow you to use your own business logic between the Android application and the server, the logic that will be β€œtranslated” in Cypher syntax later.

If you want to directly open your database in the world, you can run the Neo4J server on the server (perhaps in read-only mode?) And perhaps enable HTTPS and some other security materials . There are already some Neo4JaaS providers, so you can probably look at that.

+5
source

Source: https://habr.com/ru/post/1544192/


All Articles