I'm using System.Runtime.Caching to cache an object that I grab from DB based on parameters that were passed to me. The problem is that the parameters could be
"1234"
or
"1234,2345,3456,4567,5678,............................6543"
My best guess is that the length of the whole key could go up to 300 characters and maybe even a little longer then that.
Am I safe with System.Runtime.Caching? Is there a limit on the key size?