I am currently working on a data management system that needs to calculate huge amounts of data: think of an excel sheet with about 150 million cells with data.
We use a sql server database to store the data but the calculation performance is sub-optimal due to many reasons. While considering alternatives, I thought giving a try to in-memory object structures.
Here are the basic requirements:
We need a structure that supports multiple users making updates on the same "sheet" of my excel analogy. If performance of a single update is high enough, serializing updates of all users are acceptable
We absolutely cannot accept data loss
We need indexes on the object key, but also some indexes on partial keys, so the in-memory structure must support non-unique keys, resulting in efficient searches on partial keys returning a collection of matching records
Must support .NET
Given these conditions, any suggestions please?
Thank you,
Kemal