My Page has over 30mio Views per Day and i can't cache the Page (The data must always be up-to-date).
I have three MYSQL Queries which I would like to summarize. Is this possible?
SELECT *
FROM `meta_holdings`
INNER JOIN coins ON coins.cmc_id = meta_holdings.cmc_id
WHERE `userId` = $userId
LIMIT 0 , 999
SELECT *
FROM `meta_watchlist`
INNER JOIN coins ON coins.cmc_id = meta_watchlist.cmc_id
WHERE `userId` = $userId
LIMIT 0 , 999
SELECT *
FROM `coins`
ORDER BY `coins`.`rank` ASC
LIMIT 0 , 30
Glad to have any help