Right now, the app just loads the whole database into memory, and searches are done manually against the in-memory copy. Using SQLite instead would allow us to query things only when needed, and would probably also make case-insensitive search (see #3) faster.
Right now, the app just loads the whole database into memory, and searches are done manually against the in-memory copy. Using SQLite instead would allow us to query things only when needed, and would probably also make case-insensitive search (see #3) faster.