You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flask-Cache uses mostly in-memory/redis caching for great performance results. However for compute intensive API calls GCS, S3, ABS based cache can be useful if a previous user has requested the exact same computation results.
This cache mechanism may not be suitable for performance tuning to sub-second responses using in-memory caches, but can act as a cheap way to speed up compute intensive / db-query intensive API endpoints, perhaps those returning a lot of data that will be taxing on RAM based cache mechanisms.
This discussion was converted from issue #245 on April 05, 2021 09:38.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Flask-Cache uses mostly in-memory/redis caching for great performance results. However for compute intensive API calls GCS, S3, ABS based cache can be useful if a previous user has requested the exact same computation results.
This cache mechanism may not be suitable for performance tuning to sub-second responses using in-memory caches, but can act as a cheap way to speed up compute intensive / db-query intensive API endpoints, perhaps those returning a lot of data that will be taxing on RAM based cache mechanisms.
Beta Was this translation helpful? Give feedback.
All reactions