I have an analytics database where I make complex queries. Each of these queries generates thousands of rows. I want to save these results as a cache on disk so that I can get the results later. I cannot paste the results back into the database where the results came from, since this database is read-only. The requirements of this cache.
- Insert rows very quickly. MySQL is not a starter.
- Quickly filter and sort results
- No join of multiple tables is required.
- No transaction
I am interested to know about any SQL or NoSQL solutions that can help with this.
source share