|
|
|
|
|
by lbriner
1734 days ago
|
|
It sounds like they are already caching but the problem is what happens when the number of possible queries is so high, you cannot cache them all and also on "live" apps like the football ones, the result of the query might change relatively quickly so can't be cached. What might be possible is double-level caching, so you cache underlying data and then query from that, the results of which are also cached. |
|