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
First of all I wanna say sorry for asking so many questions. I'm sure I've overwhelmed you and I apologize for it, it won't happen again. This mostly should be all the remaining questions I have.
I'm trying to speed up my observes by batching stuff together in a more optimal way.
I experimented with queue and set and found them both really useful.
I noticed that if I setInterval Set it always runs once the first reaction is fired. And doesn't stop either (i guess unless I manually stop it)
I was curious if their was a way to combine the automatic process of priorities, with the interval from set. I wanted to try making the priority low, and when it does fire it can only if the interval allows it.
Lastly I have each instance placed in the map set too observe its own observable self from the store to update properties. (this was carried from my mobx way of doing it)
I noticed that this way is very slow in this library compared to mobx so I assume its not batching in the same way and I'm doing something wrong here(I may have been doing wrong all along anyway)
Is there an easy way to batch the process of observing itself with other instances doing the same type of observing?
Or should I have this type of observable process done in a loop through all the instances outside the instance, rather then in the instance itself.
Thank you for taking the time to explain this stuff for me this is a really incredible library.
The text was updated successfully, but these errors were encountered:
First of all I wanna say sorry for asking so many questions. I'm sure I've overwhelmed you and I apologize for it, it won't happen again. This mostly should be all the remaining questions I have.
I'm trying to speed up my observes by batching stuff together in a more optimal way.
I experimented with queue and set and found them both really useful.
I noticed that if I setInterval Set it always runs once the first reaction is fired. And doesn't stop either (i guess unless I manually stop it)
I was curious if their was a way to combine the automatic process of priorities, with the interval from set. I wanted to try making the priority low, and when it does fire it can only if the interval allows it.
Lastly I have each instance placed in the map set too observe its own observable self from the store to update properties. (this was carried from my mobx way of doing it)
I noticed that this way is very slow in this library compared to mobx so I assume its not batching in the same way and I'm doing something wrong here(I may have been doing wrong all along anyway)
Is there an easy way to batch the process of observing itself with other instances doing the same type of observing?
Or should I have this type of observable process done in a loop through all the instances outside the instance, rather then in the instance itself.
Thank you for taking the time to explain this stuff for me this is a really incredible library.
The text was updated successfully, but these errors were encountered: