Hey guys, I am thinking of forking egui (a pure reactive immediate gui library) to implement some caching capabilities.

See if I move the slider, everything has to update, even the Click each year button (where the red arrow is pointing to) which is a waste of CPU usage. What I wanted to do instead is if I move the slider, the slider only gets updated/redrawn, all the other elements don't redraw and remain static/cached.
I was wondering if I forked egui, would lru-rs crate would be appropriate for such use?
Hey guys, I am thinking of forking
egui(a pure reactive immediate gui library) to implement some caching capabilities.See if I move the slider, everything has to update, even the
Click each yearbutton (where the red arrow is pointing to) which is a waste of CPU usage. What I wanted to do instead is if I move the slider, the slider only gets updated/redrawn, all the other elements don't redraw and remain static/cached.I was wondering if I forked egui, would lru-rs crate would be appropriate for such use?