I am using Memchache for storing some data, and single item in memcahce looks like the following structure:
`locale1` => [
'domain1' => [
'key1-1' => 'value1-1',
'key1-2' => 'value1-2'
],
'domain2' => [ ... ]
]
so in memcache I have multiple items with similar keys, values that lays in side locale->domain can be changed by web interface. My question is:
What if I will place all locales to single memcache item called locales_holder, and then will fetch all data from it, would it be critical to performance or its ok?
Thanks!