- Is this a good thing to do? I have worked at places that use this same flow. I think it makes sense, i like it. - How to start implementing? ruby with sinatra. sinatra listens to the requests then uses neography to hit out to the graphene database when necessary - What programming language is preferable for this scenario? i would say ruby, as max demarzi's Neography gem is on ruby.
so basically: (mobile_device)-[:requests_to]->(intermediate_service_with_ruby_and_sinatra)-[:cypher_rest_via_neography]->(neo4j) ruby is perfect for this, mostly due to sinatra and neography, i would say. On Sunday, January 26, 2014 3:54:52 PM UTC-6, [email protected] wrote: > > I'm developing a social network for mobile devices and was wondering what > is the best approach. Currently, my app is doing most of the heavy work > encrypting, and filtering data that cypher can not do on its own, but the > code is getting quite heavy and repetitive. I was thinking, do not know if > this is possible or how to implement it or even if it is the right thing to > do, that I could create a server that the devices could send requests to, > then the server would contact the neo4j database to get the response, the > server could do most of the heavy lifting like encrypting the data for > passwords maybe or some other stuff, and send the data to the device. > > My questions are: > - Is this a good thing to do? > - How to start implementing? > - What programming language is preferable for this scenario? > -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
