async.md

July 15, 2021 · View on GitHub

Bookmarks tagged [async]

www.codever.land/bookmarks/t/async

Efficiently load JavaScript with defer and async

https://flaviocopes.com/javascript-async-defer/

When loading a script on an HTML page, you need to be careful not to harm the loading performance of the page. Depending on where and how you add your scripts to an HTML page will influence the loadin...


Using Angular Forms with Async Data - Angular

https://coryrylan.com/blog/using-angular-forms-with-async-data

Most single page apps deal with asynchronous API calls in conjunction with user input in some way. Often it’s not clear how or what the best practices are when dealing with async data and forms togeth...


Handling Observables with NgIf and the Async Pipe

https://ultimatecourses.com/blog/angular-ngif-async-pipe

Dealing with async operations with the async pipe takes care of subscribing to Observable streams/async stuff like Promises for us.

There are a few common gotchas when dealing with purely cold Observ...


Java 8: Definitive guide to CompletableFuture

https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html

Examples of using and combining CompletableFuture API


@Asynchronous does not work from inside the same EJB

https://www.whitebyte.info/programming/java/asynchronous-does-not-work-from-inside-the-same-ejb

The @Asynchronous annotation does not work from inside the same EJB. The solution is to use a separate EJB that wraps the async Method.


Parallel calls with async-await in javascript - I promise you all performance and simplicity

http://www.codingpedia.org/ama/parallel-calls-with-async-await-in-javascript-i-promise-you-all-perfo...

I was blown away about the simplicity and performance gain of making parallel calls with the new async-await feature in javascript. See the blog post to understand why.


Asynchrony: Under the Hood - Shelley Vohr - JSConf EU 2018 - YouTube

https://www.youtube.com/watch?v=SrNQS8J67zc

This talk will explore the conceptual underpinnings of asynchronous programming options, and the drawbacks and advantages to each. JS has supported callbacks...


Zuul 2 : The Netflix Journey to Asynchronous, Non-Blocking Systems

https://medium.com/netflix-techblog/zuul-2-the-netflix-journey-to-asynchronous-non-blocking-systems-...

We recently made a major architectural change to Zuul, our cloud gateway. Did anyone even notice!?


How Apache Kafka Inspired Our Platform Events Architecture

https://engineering.salesforce.com/how-apache-kafka-inspired-our-platform-events-architecture-2f351f...

There’s a class of scalability challenges that are best approached using an asynchronous, event-driven architecture — particularly when it comes to doing data integrations.


Netty: Home

https://netty.io/

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.


How to make parallel calls in Java with CompletableFuture example – CodingpediaOrg

http://www.codingpedia.org/ama/how-to-make-parallel-calls-in-java-with-completablefuture-example

This blog post presents an example about how to make parallel calls in Java with CompletableFuture in an asynchronous fashion. It resembles somehow the parallel calls pattern one can achieve in JavaSc...