🎙 Episode 049: Optimizing Performance with Robin Hansen is out!

:studio_microphone: Episode 049: Optimizing Performance with Robin Hansen is out!

We talk about @robin.heggelund’s work optimizing Elm, and the opportunities that remain for Elm performance improvements.

We hope you enjoy the episode!

15 Likes

Really loved this ep! Favourite so far

3 Likes

@dillonkearns I confirm that using workers is a great fit for Elm ports. In my app I’m sending Elm port messages to a web worker in charge of Firebase (auth, database, storage, server functions), and sending the results back to Elm ports. It’s a bit tricky because you have to assign unique IDs to messages, but that way the main thread is doing only UI and is not blocked by stuff in the background.

PS: Loved this episode, just like the others :+1:

5 Likes

@Laurent, communicating with Firebase through ports using a web worker seems a very interesting topic. Is there any post/article/repo where we can learn more about this?

1 Like

@lucamug Unfortunately no post/article/repo that I know of. Hopefully one day I will have enough time to create a SSCCE repo along with a blog for explanations.

2 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.