命名参数、缓存和 PDO
如果我有这样的参数化 SQL 语句:
SELECT * FROM table WHERE my_field = :field_value
有谁知道 PDO 是否会将其识别为相同的 SQL 语句(见下文)并使用缓存,而不是假设它是完全不同的 SQL 语句:
SELECT * FROM table WHERE my_field = :new_field_value
所以,我猜问题是: 如果参数化 select 语句中的参数名称发生变化,但其他内容没有变化,我仍然可以获得缓存的性能优势吗? 或者我是否必须确保参数名称保持不变?
If i have a parameterized SQL statement like this:
SELECT * FROM table WHERE my_field = :field_value
Does anyone know if PDO will recognize this(see below) as the same SQL statement and use the cache instead of assuming it's a completely different SQL statement:
SELECT * FROM table WHERE my_field = :new_field_value
So, I guess the question is: if the name of a parameter changes in a parameterized select statement but nothing else changes, will I still get the performance benefit of caching? Or do I have to make sure that the parameter name stays the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用 PDO_MySQL,它会在服务器看到准备好的语句之前自行将其重写为原始 SQL,除非您将
PDO::ATTR_EMULATE_PREPARES
设置为 false。If you're using PDO_MySQL, it rewrites prepared statements into raw SQL on its own before the server even sees them, unless you set
PDO::ATTR_EMULATE_PREPARES
to false.它应该被识别为同一条语句,因为缓存是在查询参数替换为值之后完成的
It should be recognized as the same statement since the caching is done after the query parameters are replaced by values
PDO 没有缓存——MySql 有。 是的,它会将“最终”查询缓存在查询缓存中。 不仅如此,如果多次使用相同的准备好的语句,您将获得额外的速度提升,因为MySql可以缓存该语句的查询执行计划。
PDO has no cache - MySql does. And yes, it will cache the "final" query in the query cache. Not only that, but if you use use the same prepared statements multiple times, you will gain an additional speed increase, because MySql can cache the query execution plan for that statement.
我不确定 PDO 如何处理命名参数,但如果它使用 MySQL 准备好的语句,那么如果您希望它使用查询缓存,则需要使用 MySQL 5.1.17 或更高版本。
MySQL 查询缓存
I'm not sure how PDO handles named parameters but if it uses MySQL prepared statements then you will need to use MySQL 5.1.17 or later if you want it to use the query cache.
MySQL Query Cache