The API of memcache for google app engine allows one to specify a namespace argument. For example:
add(key, value, time=0, min_compress_len=0, namespace=None)
Does providing a namespace argument improve performance, i.e., does memcache use the namespace for partitioning the cache keys?
The reason I ask is that my cache keys currently have a "prefix", and I am considering moving that "prefix" out from the keys into the 'namespace' argument.