Hi everybody,
I have an app that reads notifications and stores the info, and depending on the notification reads or processes and return some parts of the previous notifications.
Right now I am storing the info in maps and lists because I "think" it is faster when processing and accessing it, but I was wondering if it would be better to store the info in a sqlite database and read the info from there every time I need it.
So instead of searching a map or a list for some info, I could do a query to the database ...
What do you think would be better??
Best regards.