I'm processing some data and need to temporarily store some data in a queryable format. I think SQL is overkill as I don't need to store the data long term, I need to read The data in, process it, perform queries on it and then discard it.
I'm currently using keyed arrays of arrays, but I need to do more advanced querying which arrays don't give me the functionality to do without processing each Member of the array one by one
Any ideas?
I'm currently using keyed arrays of arrays, but I need to do more advanced querying which arrays don't give me the functionality to do without processing each Member of the array one by one
Any ideas?