Efficient storage in .Net App

Posted by Tommy on Stack Overflow See other posts from Stack Overflow or by Tommy
Published on 2010-05-08T22:23:20Z Indexed on 2010/05/09 9:58 UTC
Read the original article Hit count: 176

Filed under:
|

I'm looking for the fastest, least memory consuming, stand alone storage method available for large amounts of data for my C# app.

My initial thoughts:

  • Sql: no. not stand alone
  • XML in flat file: no. takes too long to parse large amounts of data
  • Other Options?

Basically what i'm looking for, is a way that i can load with my applications load, keep all the data in my app, and when the data in my app changes just update the storage location.

© Stack Overflow or respective owner

Related posts about c#

Related posts about storage