Hi,
I am developing an app on Android that will randomly pick and display an inspirational quotation (or verse) from a large collection of quotations. On Android I can choose between a flat file and an SQLite database.
The app should satisfy the following conditions:
Be scalable to 10^6 quotations and/or verses
Be very fast (i.e. retrieve and display a quotation, immediately at the touch of a button)
Be able to load new quotations from an external source (in a format I have not yet decided)
What data format must I use? Thanks.