faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
<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.