c# - Best way to save/load large amout of data in a .Net application? -


what best way save large amount of data .net 4.0 application?

right using lists , serializing file in "user data" folder, , working ok, want know if there better/faster way of saving/loading large amount of data.

the data saving contains lots of words, documents.

the size of data 1 mb.

that depends on type of application. wouldn't use sql database of sort load , save operation of data not need query or transform. time take map object graph relational model not worth it. don't believe ever faster simple serialization due overhead associated databases (connection management , mapping)

my recent experience binnaryformatter had excellent results (files ~ 15mb). worse come worse can write own formatter.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -