|
|
|
|
|
by amelius
4128 days ago
|
|
Great developments, since, imho, we really need multi-threading to make decent user-interfaces (ones without hick-ups due to blocking of the cpu-resource). I think what we need is immutable data-structures to be shareable between threads. This approach should also allow structural sharing between threads, allowing for efficient and safe data structures. Also, I could see a use for a mechanism where a thread creates a data-structure, then marks it as read-only, such that it can become shared. |
|
The solution to that being parallel or async paint/layout, which is something I never hear mentioned (probably because it's a really hard problem).