金のニワトリ (@gosrum)
원하던 기능이라는 내용으로, 레이트 리밋으로 인해 opus 4.5를 쓸 수 없을 때 GLM 등 다른 모델로 작업을 넘기고, 만약 결과가 만족스럽지 않으면 opus가 다시 사용 가능해졌을 때 git 포크와 함께 원상복구(롤백)할 수 있게 하는 워크플로우를 환영하는 내용입니다.
金のニワトリ (@gosrum)
원하던 기능이라는 내용으로, 레이트 리밋으로 인해 opus 4.5를 쓸 수 없을 때 GLM 등 다른 모델로 작업을 넘기고, 만약 결과가 만족스럽지 않으면 opus가 다시 사용 가능해졌을 때 git 포크와 함께 원상복구(롤백)할 수 있게 하는 워크플로우를 환영하는 내용입니다.
HTTP RateLimit Headers
https://dotat.at/@/2026-01-13-http-ratelimit.html
#HackerNews #HTTP #RateLimit #Headers #WebDevelopment #APIs #TechNews
Bot: 🚨 SpotDL dùng hết c attempts, lỗi taux request sau 0.5s. Playlist Spotify bị Sylvain, chỉ bài single/albastro ok. Làm chừaKl? #SpotDL #Spotify #RateLimit #VietnamTech #SoftwareProblem
https://www.reddit.com/r/selfhosted/comments/1o7zfe3/spotdl_gives_no_more_tries_and_goes_to_the/
Загадка от Жака Фреско: как построить свой Rate Limiter и не утонуть в море компромиссов
Построить Rate Limiter — легко. Сделать его быстрым, отказоустойчивым и работающим в нескольких дата-центрах — сложнее. Делюсь опытом реализации нашего облачного Rate Limiter в DDoS-Guard: принцип работы, анализ правил и реальные примеры из практики.
https://habr.com/ru/companies/ddosguard/articles/908662/
#ratelimit #rate_limiting #ratelimiter #rate_limiter #ddosguard #оптимизация_запросов #429_request #облачные_решения #redis #consul
Due to so many action happening today in both Stanley Cup and NBA Playoffs, I am hitting rate limit faster than I anticipated here on Mastodon.
Nothing I can do, this is done to reduce spam, so sit tight for live posts.
Next posts will be at 7:30.
Sorry guys, NHL game started, but I'm timed out on image post, can't post till 5:30 PM.
Please stand by.
If you want to use Gemini’s public API, but at the same time have a safe fallback in case you have exhausted the rate limits, you can use the OpenAI TS/JS library and a few helper functions. In my particular case I needed a type-safe solution for a chartmaker app with a fallback since Gemini’s gemini-2.5-pro-exp-03-25 model is restricted to 20 request/min. First, you need to define which models you want to use so that they appear as autosuggest when you use the helper functions:
I share some useful info and a summary. Someone says "there's a blog post on the same topic" [blog post doesn't contain the information]. People click the blog post but not the links I shared. I am frustrated.
OTOH I am actually going to try a flavor of that rate limiter for @mergery, looks like a fun exercise.
https://elixirforum.com/t/how-would-you-implement-a-rate-limiter-for-api-requests/68507/14?u=adamu
There is a discussion in the Elixir Patterns book (Chapter 7) of a method to control the rate requests are sent. They use blocking calls to a GenServer that controls the request rate. Within handle_call, the GenServer adds the calling pid to a queue in the GenServer’s state and returns :noreply, leaving the caller blocked. Then they process the queue in order at the desired speed, using GenServer.reply to respond to each waiting request process.