什么是QP层?
来自blogs.innodb.com:具有 Binlog 功能的 InnoDB Memcached
在我们早期的实验室版本中,我们通过 InnoDB Memcached Daemon 插件提出了 MySQL NoSQL 解决方案(请参阅之前 Calvin 和我的帖子)。该早期版本允许 Memcached 插件直接与 InnoDB 交互,完全绕过 MySQL 优化器和
QP 层
。它与另一个流行的 MySQL NoSQL 解决方案 HandlerSocket 不同,它甚至跳过 Handler API 层,直接通过 InnoDB API 访问 InnoDB。因此,从理论上讲,它会更简单、更高效。
什么是QP 层
?
搜索没有给我带来任何好的结果。我最接近的是查询路径
。这是对的吗?
From blogs.innodb.com: InnoDB Memcached with Binlog Capability
In our earlier Labs release, we presented a MySQL NoSQL solution through InnoDB Memcached Daemon Plugin (see earlier Calvin’s and my posts). That earlier release allows the Memcached Plugin directly interacting with InnoDB, completely bypassing MySQL optimizer and
QP layers
. It differs with another popular MySQL NoSQL solution, HandlerSocket, by skipping even the Handler API layer and directly access the InnoDB through InnoDB APIs. Thus, in theory, it would be simpler and more efficient.
What are QP Layers
?
Searching did not yield me any good results. The closest I came to was Query Path
. Is this right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这意味着查询处理,包括解析、优化等。
I assume it means Query Processing which includes parsing, optimizing, etc.