Skip to content
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

Open
trusktr opened this issue Jun 28, 2020 · 2 comments
Open

adding Solid.js into the perf comparison #539

trusktr opened this issue Jun 28, 2020 · 2 comments

Comments

@trusktr
Copy link

trusktr commented Jun 28, 2020

Summary

It might be nice to add Solid's reactive signals and state into the tests, for comparison.

cc @ryansolid

@ryansolid
Copy link

ryansolid commented Jun 28, 2020

@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:
It is possible to build operators on top of Solid like I've shows with solid-rx. So if someone chose they could build all of them and put Solid in the comparison. But the difference here is that is what these libraries do, and they all have more or less the same set of operators, so adding them to the suite was likely easy.

@briancavalier
Copy link
Member

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants