Or should I use a different hammer to fix this problem.
I\'ve got a very simple use-case for storing data, effectively a sparse matrix, which I\'ve attempted to stor
Consider using a table for new inserts of the given day, without an index. Then, at the end of each day, run a script which will:
If you can do lookups on historical data in O(log n), and lookups on today's data in O(n), this should provide a nice compromise.