hyperknot
Explore posts from serversQuestions about migrating from MobX
Hi, SolidJS newbie here with 8 years of MobX React experience. Couple of Qs:
1. I'd like to use class-based stores whenever possible. Is there anything I need to be aware of when using them?
2. Is store performance adequate? For example, can I update a string value at 60 FPS like this?
3. setStore vs. setState: Here is setState,
https://docs.solidjs.com/concepts/stores#path-syntax-flexibility
but later on it starts recommending using setStore
https://docs.solidjs.com/concepts/stores#appending-new-values
4. Is appending to an array better than setState with .push()?
5. Is there any performance advantage to using produce? If I'm using my own setter function for each value, then I cannot use produce. Is there any disadvantage to this?
4 replies