GH5T
17
Really surprised Bubble hasn’t introduced any Redis based functionality. It’s streamlined on all major applications. I use it on my own applications. KV storage is so powerful. But hey, guess they want to keep overcharging us for not caching data that should be cached. Tree has to get water somehow I guess.
A suggestion would be to cache the data yourself. I use my Toolkit plugin to use cookies and local storage. These help me add data into the user’s machine that isn’t secure nor intended to be. Things like blog posts, updates, notifications, etc., can all be cached on the user’s machine. You’d want to create some additional logic to update that cached data, and enforce it when necessary. This solution will prevent API calls being made, and it even renders/loads data much faster. Though, it’s somewhat tedious to set up, it’s very efficient.
2 Likes