memcache中有"too many requests for a single key"这样的东西吗?

Is there such a thing as "too many requests for a single key" in memcache?

如果与所有其他键相比,我对 memcached 中的一个特定键进行更多读取,这会成为问题吗?还是 memcached 不关心读取是否均匀分布在键之间与所有读取到单个键?

完全没有关系。 Memcache 不会关心为特定键调用了多少次。它会完成它的工作。

如果对某个特定键进行了大量调用,那么由于它使用的 LRU 算法,它很有可能不会被逐出。