Hello devs,
I have a question - I found out that when I changed 3rd param from false
Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql, true, false);
to true
Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql, true, true);
then my sql query was generated much more faster.
I was lo...