Danilo Oliveira
Danilo Oliveira

Reputation: 280

What is the backend of the mobiledata service of Bluemix?

I analyzing if I use or not the mobiledata of Bluemix to my app, but I could not find what is the DB engine behind its Solution. Anyone know what is the backend of mobiledata service of Bluemix?

Upvotes: 0

Views: 111

Answers (4)

Bimal Jha
Bimal Jha

Reputation: 409

Basically, you can select any database service available on Bluemix to store your data. It depends on type of application and data to be stored. If you need to store relational data, go for a SQLDB service. If your mobile application need to store JSON data, then you need a NoSQL database service available on Bluemix. Cloudant is a good NoSQL database and most developers use it as a mobile data backend service.

Upvotes: 0

priya2503
priya2503

Reputation: 111

Backend of mobile data service of bluemix uses Cloudant NoSQL Database for Bluemix as datastore.

Upvotes: 2

Anand
Anand

Reputation: 645

Backend of mobile data service of bluemix is cloudant.For details please refer below link on getting started:

https://www.ibm.com/developerworks/cloud/library/cl-rapiddev-app/

Upvotes: 3

Jeff Sloyer
Jeff Sloyer

Reputation: 4964

It actually uses Cloudant behind the scenes. Cloudant is based on CouchDB and adds Lucene Indexes as well.

Upvotes: 1

Related Questions