I have a server application written in C#.
As the application running, there will be tens of thousands of key->value mapping generated, and this info needs to be persisted. For each of these mapping records, there will be update/delete operation.
What is the best approach to store it? No database.
Is there any performance issue with ConfigurationManager in such case?
How about for thousands of records? Is it possible to avoid using any database?
Thanks!