I´m searching for a solution to store 2D (int) Arrays to local disc - doesn´t sound very hard, but the frequency and the size of the arrays keep bothering me.
The array size is [1400][400] and at peak times, we´re getting every 50ms an array.
How much do we need to store? At least, every array of the last hour - after that, just ony array per minute for 7 days - after that, only an array for every hour for 2 years.
First I thought about an RRD Tool with the NHawk Interface, but it can´t store whole Arrays. Second Thought: Database (like MS SQL), but I think its to slow for this or you need a very powerful machine.
Is there maybe another option for our problem?