<FromGitter>
<anamba> question, does amber have any kind of caching support? like, so i don't have to keep re-rendering an expensive block of html until something changes
<FromGitter>
<robacarp> @anamba views in amber are compiled in, which means theyโre functionally cached at compile-time
<FromGitter>
<anamba> sure, but sometimes the data displayed in them is expensive to produce
<FromGitter>
<anamba> i suppose i could just cache those values instead of caching the finished html
<FromGitter>
<anamba> opened PR #996 ๐ ๐
<FromGitter>
<drujensen> @anamba woohoo!
<FromGitter>
<drujensen> regarding caching, there is a Redis instance that you can cache stuff. Its used for WebSocket connections and session sharing if you enable it between multiple instances. You should be able to cache whatever you want there.