My ASP.NET application need to use 40K lines of <key, value>
pairs.
with every client request, the application search the right key and return the proper value.
should I just use a Dictionary<string, string>
or use ASP.NET caching solution?
what is the benefit for each solution?
edit:
- the lifetime of the data is the lifetime of the application.
- it would be updated manually every couple of weeks.
- it shared between all users
- no write operation, only reads