php - PDO - Does PDO prepare query cache now? -


i read lots of articles, can't find clear answer question.

most articles not seem recent ones, want check again.

does mysql query cache affect pdo prepared queries now?

if send prepare twice

$mysql->prepare("select * `table` `id` = ?"); 

the second select reflect result cache?

if yes, , if there different page send same prepare query, cache work fine?

i read mysql documentation , know query cache support native sql query: mysql_stmt_prepare() , mysql_stmt_execute().

but didn't know how pdo prepare queries working.


Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -