Hey fellas,
I have a large key-value map that I want to serve in a web service application. I want to keep a single instant of this map inside the memory (around 600mb footprint) and let every request that is made to the service use the very same object. I'm new to memcached and to be honest, caching in general. So is it better to keep the object in the memory as a whole or to add key-values to the cache separately? (btw I'm using Scala on Lift)
