For example, I need a timer on the page. So I can have an action every 100 ms
type Action = Tick Time
and I have field time
in my Model
. Model could be big, but I need to recreate it and whole view every 100 ms because of time field. I think it would not be effective performance-wise.
Is there another approach or I shouldn't worry about such thing?