MemCache:没有空间“放置” - 会发生什么?
我还没有对此进行编码/测试,但假设您有 2 个非常小的 memcached 实例,例如每个 1Mb。
当每个缓存已满并且您尝试将另一个对象“放入”缓存时会发生什么?假设缓存中的所有对象都有无限期期限。有什么想法吗?
I haven't coded/tested this yet, but assume that you have 2 memcached instances of very small size, e.g. 1Mb each.
What happens when each cache is full and you try to "put" another object into cache? Assume all objects in cache have infinite expiry. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当表已满时,后续插入会导致旧数据按照最近最少使用 (LRU) 顺序被清除
When the table is full, subsequent inserts cause older data to be purged in least recently used (LRU) order