Jonathan Martin: Async patterns to scale your multicore JavaScript elegantly. | JSConf Budapest 2017

Поделиться
HTML-код
  • Опубликовано: 17 янв 2025

Комментарии • 11

  • @tldrjs
    @tldrjs 5 лет назад +1

    Here's the slide deck for the talk + links!
    speakerdeck.com/nybblr/async-patterns-to-scale-your-multicore-javascript-dot-dot-dot-elegantly

  • @greven182
    @greven182 6 лет назад +1

    Amazing talk. Really will implement some ideas from this on my pet projects.

  • @sj82516
    @sj82516 6 лет назад

    really helpful and impressive. thanks for sharing

  • @xXISoulZIXx
    @xXISoulZIXx 7 лет назад

    nice, I didn't know Semaphores at all but they seem useful for the future. Can maybe someone explains to me what a possible reason is to limit this MP3-Import example? I think I didn't get the point. Is it better for writing the files on the hard disc (on import on the server side)? or only to keep the order of files (song 01, song 02, song 03, ...) so that the loading indicator doesn't jump?

    • @EscherSketcher
      @EscherSketcher 6 лет назад

      paaddy_ The idea is to not crash the browser if the concurrent file sizes are too large. ie The user attempts to upload 100 files all at once.

  • @chrisli6893
    @chrisli6893 6 лет назад

    would you mind sharing the slide?

  • @HaNdTriXo
    @HaNdTriXo 7 лет назад

    Thanks for this nice talk!

  • @valgussev123
    @valgussev123 7 лет назад

    Very nice talk, thanks a lot.

  • @DrewryPope
    @DrewryPope 7 лет назад +2

    4:25 Every time I try to say parallelism.

  • @YAO2208
    @YAO2208 7 лет назад

    really nice one

  • @YTSliv
    @YTSliv 7 лет назад

    Just use rx over promise, the async/await/promise is a convenient but bad standard, the part you can't cancel/multi-value/teardown properly makes rx essential handling slightly complex structures.
    Also define a method call iife call, it is far easier to manage and refactor over extra quote pairs.