-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding Solid.js into the perf comparison #539
Comments
@trusktr To be fair Most and the compared libraries appear to all be FRP. Ie.. unicast operator oriented stream transformation libraries. Technically you can build that on top of Solid but its reactive system is designed for auto-tracking like MobX etc.. So it's a very different sort of thing. Solid's reactive system is multicast and caches values with each node. They are designed for very different purposes. Solid's granular auto-tracking makes its ideal for working with granular view updates. Most and co are optimized for data transformation, io ops, I actually like using libraries like Most for stores, and async data loading and then feed them into Solid's reactive system at the leaves. These approaches can be complementary just aren't really the same thing at all. EDIT: |
Thanks @trusktr and @ryansolid. I agree with @ryansolid's perspective that most and solid have different goals and approaches, and also can be complimentary. I'm not sure how much value most's microbenchmarks would provide for solid, but if someone thought it'd be useful and wanted to contribute them, we'd certainly take a look. I'll leave this open for a bit to see what discussion develops. cheers! |
Summary
It might be nice to add Solid's reactive signals and state into the tests, for comparison.
cc @ryansolid
The text was updated successfully, but these errors were encountered: