-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better Caching #626
Comments
@sterlingrules What caching do we need to avoid the loading wheel on page load? |
@crablar There are a bunch of little things I believe we can do. We can start by assessing requests and just making sure we're not making any unnecessary data calls. Then we can improve the server by leveraging |
What would we cache in redis? What would vuex-persist do? |
In Redis, we could cache expensive requests. Possibly the posts feed, user profiles, or topic pages. Whatever sort of request that would have multiple database queries. Heroku provides a Redis add-on. |
I know that we use Prerender. Can we do some more eager rendering and caching of the main homepage so that it loads more quickly?
The text was updated successfully, but these errors were encountered: