Backend for data storage

I moved from using REST calls to the coronium core api.

Just want you to know its easier and shorter to code using the CC API than coding REST calls.

As for complexity, well I started coding corona and lua exactly 1 year ago with little programming background, and i’ve no problems with it.

Coronium core seems powerful but it also requires some web developing knowledge. I’d also rather have all in one solution including (analytics-push notifications)

Storage is for uploading/downloading files vs Database which is retrieving contents that were created dynamically? Which do you think would be quicker and more efficient for my use case?

Does it support Corona/Lua? I searched the docs couldn’t find anything. 

Thanks, I might consider that in the future. 

I just looked at the original question. In my opinion, you may want to use firebase Config

https://marketplace.coronalabs.com/plugin/firebase-config

If you don’t want to use Config, I would use firebase database. Config is great receiving data, Database is great for send and receiving data, Storage is great for sending and receiving files (images, sound files, etc)

I don’t know, it seems that Remote Config is supposed to be used for changing certain values, like the price of an item, or enemy’s health. 

Database: is for multiple connected clients like a messaging app. Also, I’m not sure how intuitive it is for me to add new entries directly into the database.
I think Storage is the best solution for me. The client can download a file and retrieve the data from it. Whether that file is .lua or .json I’m not sure which is best. I think I will experiment a little with these different services.