I need to store few objects (less than 100, in the worst case) in my android app. Each of these objects contains: (1) A date object (2) Another structured object of mine (which includes short, float, char, string and boolean).
Storing the objects as string set of JSONs in shared preferences is the most easy solution, but does it the best for this amount in terms of performance? Should I stick with SQLite even though the small amount of data to store?