I desperately need to open-source this! There's so much cool technology you've created. Amazing 👏
@ralphwealth163 Жыл бұрын
can we have more of this i use linear daily and i'm blown away by the product engineering
@lucasfariadev5 ай бұрын
This is a masterclass in system design and scaling. I'm getting started in the local-first and sync engines world, and this is pure gold as far as learning goes. Incredible deep concepts explained in a way an engineer at every level can understand. Even code examples in the end! I'm blown away by this quality. Thanks for this content and please post more!
@JacoBoogie10 ай бұрын
How does this not have more views!? Such an awesome talk - just watched Tuomas’ 2020 talk straight into this one (highly recommend) and his distillation of such complexity into easy to comprehend bits is incredible! To think I’ve been following react/nextjs drama when this exists…
@Alcani3ca6 ай бұрын
This is incredibly interesting and an amazing piece of engineering. I'm not sure if many teams could into implementing something like this with other business needs stacking up.
@ferbar95 Жыл бұрын
By any chance do you guys use event sourcing in back-end? This feels a lot like event sourcing one-way data flow implemented for the front-end. I have implemented something very similar using MobX as well. VERY smart use of IndexDB and its offline capabilities. It is refreshing to see this being implemented at scale! Just signed up for your app's trial. Looking forward to taking it for a spin!
@HR-qy3gf9 ай бұрын
I'm very curious how you guys iterated to create that architecture.
@loren39548 ай бұрын
That's what this whole video is about :)
@Alcani3ca6 ай бұрын
If a transaction in the queue is invalidated by a transaction of another user, what happens to other transactions on the same object in the queue of the first user? Do they get invalidated at the same time?
@ChocoBob19925 ай бұрын
I think he touches on this when talking about optimistic updates. The client's transaction is pushed as a mutation to the GraphQL API. If the API returns an error, the transaction is deleted, the local change is reverted, and whatever is valid will eventually be streamed in as an update. From my understanding, they implement client-side logic to make sure that all updates to the same object are batched in a single transaction, so that you don't need to solve for what you're specifically describing.
@igrb Жыл бұрын
Brilliant talk, love it
@sohamnandi752618 күн бұрын
Will the sync engine be open source in future ?
@henitchobisa6417 Жыл бұрын
What an amazing insight! Thank you so much for sharing such great stuff!
@paul_pierre Жыл бұрын
Wonderful talk and even more wonderful for sharing how you think
@roguesherlock Жыл бұрын
this was really good thank you
@Segun_OS Жыл бұрын
Do you rely solely on graphql subscriptions for real time updates or you use other solutions?
@borfie21 күн бұрын
if we did a word cloud UM would be the biggest word.
@d_15_giteshsarvaiya223 ай бұрын
I am making a clone of linear. This really helps me to understand how linear works.