Elnarilelnaril.hashnode.dev·Nov 18, 2024Tutorial: How to rate limit Python async requests to Etherscan - and other APIsTL;DRThis article provides a tutorial on implementing rate limiting for Python async requests using the credit-rate-limit library. It demonstrates how to manage API rate limits effectively with an example using the Etherscan API, ensuring your asynch...DiscussPython
Simon SeyerforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.com·Nov 11, 2024The retain cycle of Swift async/awaitIn a recent project, we observed one of those bugs that lets every developer jubilate. It was only happening rarely and seemed to manifest in varying ways. But first, some context: We were running a Swift/Vapor server which controls a generic Zühlke...Discuss·1 like·383 readsApple
Shikhar Shuklashikhar99.hashnode.dev·Nov 6, 2024JavaScript Promises Explained: The Easiest Guide You’ll Ever Need!Introduction Promises in JavaScript can feel a bit like magic—but once you get the hang of them, they’re incredibly useful! In this guide, we’ll break down JavaScript promises in a way that’s easy to understand and remember. By the end, you’ll have a...Discuss·34 readsJavaScript
Okoye Ndidiamakaamikdigital.hashnode.dev·Nov 6, 2024Mastering Asynchronous JavaScript: Promises, Async/Await, and Callbacks ExplainedJavaScript is both versatile and responsive; knowing how to use asynchrony brings out its best. From fetching API results to loading files, async development allows us to do multiple things at once, without blocking. We will explore three different a...DiscussJavaScript
Yash Raj Srivastavyashsrivastav.hashnode.dev·Nov 6, 2024The Tale of Async, Timeouts, and Why I Almost Gave Up on Java 🤦♂️Introduction: The Simple Dream of Async 🛌💭 Ah, the sweet promise of @Async. Just slap this annotation on your method, and boom! Now you’ve got tasks running in the background. The main thread is free, happily managing other tasks while the backgrou...DiscussSpringboot
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 30, 2024Scaling & Data ReplicationFault (Vs) Failure : Fault is the CAUSE , Failure is the EFFECT Fault Tolerance – It will replicates the server , if any one of the server fails also the other replicated server will give the Response to the Customer . it will applicable for DB as we...DiscussFault Vs Failure
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 29, 2024Publisher Subscriber Model (Pub/Sub Model)What is Pub/Sub Messaging ? Related Terminology Sub Publisher —> Input(Channel) —> Output(Channel) —> Sub ...DiscussPub Sub Model
Darshit Anjariadarshitanjaria.hashnode.dev·Oct 28, 2024How JavaScript Handles Concurrent Requests Despite Being Single-Threaded: The Magic Behind the ScenesIntroduction JavaScript is known as a single-threaded language, meaning it can only execute one task at a time. However, despite this limitation, JavaScript can handle multiple asynchronous operations efficiently, such as fetching data from an API or...DiscussJavaScript
Bhupendrabhuppi.hashnode.dev·Oct 23, 2024How asynchronous code is executed in JavaScriptIn JavaScript, asynchronous code is handled using the event loop, which allows non-blocking execution. JavaScript is single-threaded, meaning it can only perform one task at a time. However, it can handle asynchronous tasks efficiently without blocki...DiscussJavaScript
Jayaramblog.jigarthanda.xyz·Oct 22, 2024Abort It! Streamlining Your Asynchronous JavaScriptIn the JavaScript ecosystem, all network and database calls are inherently asynchronous due to the non-blocking nature of JavaScript's event-driven architecture. Have you ever tried to abort asynchronous tasks? Consider scenarios like when you want t...Discuss·1 like·104 readsJavaScript