I use memcached to store the integer result of a complex calculation. I\'ve got hundreds of integer objects that I could cache! Should I cache them under a single key in a more
I would say you should store values individually and use some kind of helper class to retrieve values with multiget and generate a complex dataobject for you.