Saga Pattern Simplified: Building Sagas with Temporal

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024
  • In this webinar, we go over the challenges with Sagas and introduce Temporal, a Durable Execution platform that lets you implement and automate Sagas more easily.
    ---
    Temporal is the simple, scalable, open source way to write and run reliable cloud applications.
    Learn more
    Blog: temporal.io/blog
    How Temporal Works: temporal.io/ho...
    Community Slack: temporal.io/slack
    Developer resources
    Docs: docs.temporal.io
    Courses: learn.temporal...
    Support forum: community.temp...

ความคิดเห็น • 2

  • @joebowbeer
    @joebowbeer 2 หลายเดือนก่อน +2

    21:08 Sagas with Temporal (Java SDK)

  • @eugenesidelnyk4600
    @eugenesidelnyk4600 2 หลายเดือนก่อน

    Steve forgot about PHP SDK :D
    TBH in case of PHP, it seems that the whole concept is built on using Generators as coroutines (this approach suffers from the red blue function problem), what people used to do until the 8th version of PHP. Since 8.1 Fibers were introduced, and it is such a releif to use AMPHP set of libraries that doesn't suffer from Generator signatures anymore, so that one could just write the function with just normal signature and it's absolutely not necessary to think about async workflows and non-blocking IO where you don't want to deal with it directly.