C# Dictionary Performance
Posted
by derek
on Stack Overflow
See other posts from Stack Overflow
or by derek
Published on 2010-04-30T13:24:41Z
Indexed on
2010/04/30
13:37 UTC
Read the original article
Hit count: 146
I am using a Dictionary to store data, and will be caching it. I would like to avoid server memory issues, and have good performance by limiting the size of the Dictionary<>, either in size or number of entries.
What is the best method of doing this? Is there another class I should be considering other than a Dictionary?
© Stack Overflow or respective owner