-
Notifications
You must be signed in to change notification settings - Fork 5
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
Stack overflow when the model includes large lists (1k-2k elements) #15
Comments
Unrelated, but Ryan ran into your PR on stream and was amused. |
I was able to get this working with a few changes: krausest/js-framework-benchmark@master...joprice:js-framework-benchmark:solidjs-elmish
|
Tuples are represented using arrays. let a = "maxime", 32 export const a = ["maxime", 32]; |
To track changes in an array, you would have to use a (BTW I just updated the samples in this repo to use the latest version of solid-js) |
I am writing an entry for Fable.Solid Elmish in krausest/js-framework-benchmark. The benchmark involves creating, rendering, appending, updating, and deleting rows.
The implementation fails with the error below when the number of rows goes beyond 1k.
I'm pretty sure application code is not at fault here; the update function returns control without any errors after adding over 1k elements to the model. You can see the full code here: App.fs
The text was updated successfully, but these errors were encountered: