Dhrish Parekhflickk.hashnode.dev·Nov 20, 2023Rate Limiting in NEXTJS13 and CLERK Using UPSTASHHey Folks , Since Clerk is a great and emerging authentication service for Nextjs , it truly makes authentication easy to setup but for someone new , it might be hard to setup rate limiting without any help or reference, so this article acts as one. ...Discuss·1 likeserverless
Somesh Mohancodehall.hashnode.dev·Nov 17, 2023API Rate Limiter - ImplementationIn our last article for rate limiter, we understood the path that we are going to take for building our rate limiter. Today we will look at the implementation of the same. Lua Script As discussed, we will employ a Lua script to address potential conc...Discuss·1 likeratelimit
Dhairya Vermarajurastogi.hashnode.dev·Nov 9, 2023Preventing OTP Abuse: Rate Limiting your APIIn the realm of cybersecurity, the choice of the size of your OTP is not to be taken lightly. When your backend system demands a 4-digit OTP, it essentially means there are 10,000 unique combinations possible (10**10**10*10). The significance of this...Discussgolang
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Nov 6, 2023Building a Simple Rate Limiter Middleware in Go using GinIn this article, we are going to build a Rate Limiter middleware for a Gin server. We will build a very simple rate limiter, one that stops accepting requests when these exceed the limit in a certain time frame. We Will not create a rate limiter that...Discuss·95 readsGo Language
Joyal A JohneyProjoyalajohney.hashnode.dev·Nov 5, 2023Designing API Rate Limiters In GoImagine you are developing an E-commerce app and just starting out. Suddenly, thanks to effective "marketing", a famous celebrity tweets about your platform and announces a Friday flash sale. Brace yourselves, as a massive influx of traffic is headed...Discuss·1 like·183 readsratelimit
Waqas Ahmedwaqasahmed.hashnode.dev·Oct 16, 2023Dynamically rate limiting Spring Boot APIs using DroolsIn the world of software development, speed is our currency. Our success depends on the agility of our engineering teams to bring our product vision to life. - ChatGPT But what does the above have to do anything with the title of this post? Well, bi...DiscussSpringboot
API Guardian100daysofapisecurity.com·Oct 12, 2023API Rate LimitingAPIs are vulnerable to various security threats, including DDoS attacks, brute force attempts, and unauthorized access. One effective strategy to mitigate these risks is API rate limiting, a technique that balances availability and security. In this ...Discuss100 Days of API SecurityAPIs
Tanay Vanblog.tanayvan.com·Sep 30, 2023Too Many Requests? Understand the Art of Rate LimitOne fine day, we decided to develop a face recognition system at my company, and I was eager to dive into the coding process. Little did I know that I would soon find myself trapped in the dreaded realm of 'Too Many Requests.' The reason? I was makin...Discuss·81 readsratelimit
Dickson Sosanyablog.midedickson.work·Sep 27, 2023Demystifying Rate Limiting: A Comprehensive GuideYou might have seen that behaviour when remembering your smartphone PIN or password. You make a couple of attempts to put in the correct PIN, and at some point, you try again. You see a message like: "You've entered an incorrect password multiple tim...Discuss·2 likes·43 readsratelimit
Balaji Vijayanbalajivijayan.hashnode.dev·Sep 18, 2023API Rate Limiting and BeyondWhat is API Rate Limiting? API Rate limiting is a traffic management technique used to restrict overload on the backend server by limiting the number of requests it can process over a period of time. It's a widely used API design pattern which improv...Discuss·80 readsAPI GatewayAPIs