1.17 ms (6.72%)
|
1 |
SELECT `key` as array_key, `pool`, `cluster`, `key`, `count`
FROM `increment` WHERE `cluster` = ? AND `pool` = ?
ORDER BY `count` DESC, `updated_at` DESC
Parameters: [
"message_queue_stats"
"message_queue"
]
SELECT `key` as array_key, `pool`, `cluster`, `key`, `count`
FROM `increment` WHERE `cluster` = 'message_queue_stats' AND `pool` = 'message_queue'
ORDER BY `count` DESC, `updated_at` DESC;
|
1.05 ms (6.00%)
|
1 |
SELECT
`name`,
`base_class` AS baseClass,
IF(`active` = 1 AND `installed_at` IS NOT NULL, 1, 0) AS active,
`path`,
`version`,
`autoload`,
`managed_by_composer` AS managedByComposer,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at`;
SELECT
`name`,
`base_class` AS baseClass,
IF(`active` = 1 AND `installed_at` IS NOT NULL, 1, 0) AS active,
`path`,
`version`,
`autoload`,
`managed_by_composer` AS managedByComposer,
composer_name as composerName
FROM `plugin`
ORDER BY `installed_at`;;
|
0.35 ms (2.03%)
|
1 |
SET @@group_concat_max_len = CAST(IF(@@group_concat_max_len > 320000, @@group_concat_max_len, 320000) AS UNSIGNED);SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''))
SET @@group_concat_max_len = CAST(IF(@@group_concat_max_len > 320000, @@group_concat_max_len, 320000) AS UNSIGNED);SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
|