Looking for a recommendation. I have a command line utility that now needs to process a large amount of data coming from a web service in a form of a CSV.
I need to run multiple tests on the data to look for anomalies and patterns. I'd like the utility to be something that someone can download and not have to install or configure.
Is there a recommendation for a NoSQL or SQL database that I can just spin up in memory, load the CSV into a table and then run my queries against that data?
Can Redis be used without installation? Something else?