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
There are significant problems with the websever cache I designed. The site is generated via a templating engine that reads the config file and creates the site. The results of the templates are almost always unchanging, only extremely rarely will the underlying config change.
In addition, any future statistics we display will be unchanging in hour intervals which can be cached too. The statistics are likely more important as the database requests could take very long depending on how complicated the queries are. The current cache is not great and should probably be replaced with a key value store. This could simply be a Go map.
The text was updated successfully, but these errors were encountered:
There are significant problems with the websever cache I designed. The site is generated via a templating engine that reads the config file and creates the site. The results of the templates are almost always unchanging, only extremely rarely will the underlying config change.
In addition, any future statistics we display will be unchanging in hour intervals which can be cached too. The statistics are likely more important as the database requests could take very long depending on how complicated the queries are. The current cache is not great and should probably be replaced with a key value store. This could simply be a Go map.
The text was updated successfully, but these errors were encountered: