命名参数、缓存和 PDO

发布于 2024-07-10 08:02:21 字数 340 浏览 6 评论 0原文

如果我有这样的参数化 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

↘紸啶 2024-07-17 08:02:21

如果您使用 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.

此生挚爱伱 2024-07-17 08:02:21

它应该被识别为同一条语句,因为缓存是在查询参数替换为值之后完成的

It should be recognized as the same statement since the caching is done after the query parameters are replaced by values

别闹i 2024-07-17 08:02:21

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.

难以启齿的温柔 2024-07-17 08:02:21

我不确定 PDO 如何处理命名参数,但如果它使用 MySQL 准备好的语句,那么如果您希望它使用查询缓存,则需要使用 MySQL 5.1.17 或更高版本。

MySQL 查询缓存

在 MySQL 5.1.17 之前,准备好的语句不使用查询缓存。 从5.1.17开始,准备好的语句在某些条件下使用查询缓存,根据准备方法的不同而有所不同:

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

Before MySQL 5.1.17, prepared statements do not use the query cache. Beginning with 5.1.17, prepared statements use the query cache under certain conditions, which differ depending on the preparation method:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文