user2449016
user2449016

Reputation: 169

Using Mobilefirst database for jsonstore sync

We are developing an Hybrid application using IBM MobileFirst Platform Foundation 6.3.

We don't know if we can use the database that we installed during the MobileFirst installation.

It's a bad practice to use this database as a backend for our apps?
Will this generate a overhead?

Upvotes: 0

Views: 74

Answers (1)

Idan Adar
Idan Adar

Reputation: 44516

The MobileFirst Server that is installed in the Development environment (the Eclipse plug-in) uses a filesystem-based database (HSQL) by default.

The MobileFirst Server that is installed in a QA/Production environment supports a database from these vendors: MySQL, Oracle, DB2.

In both cases the the database that is created for the use of the MobileFirst Server should be used solely by MobileFirst Server. It should not function as a backend to store other information in it for use by the applications, that are served by the MobileFirst Server.

It should be separately hosted databases - it can be on the same machine if it is able and has enough resources, but it should be different databases.

Upvotes: 1

Related Questions