Published onApril 25, 2025message-queueconnection-leakamqp一个消息队列连接泄漏问题浅析分析一下在使用 RabbitMQ 时遇到的连接泄漏问题。原因是在异常处理中没有主动关闭连接,导致旧连接积累。文章解释了网络连接需要显式管理的原因,并提出两种解决方案:使用 `async with` 自动关闭短期连接,或使用连接池进行高并发场景的连接复用。
Published onJanuary 24, 2025AIOpenRouterWeb-SearchOpenRouter 终于上线 Web 搜索插件了OpenRouter 上线了 Web 搜索插件,可以让任何 AI 模型都能接入实时网络信息。
Published onJanuary 13, 2025twittertwitdow做了个 Twitter 视频下载网站 - twitdown.comCursor 写代码用了两个小时,debug + 优化用了两天。。。
Published onDecember 19, 2024pythonfastapipydanticFastAPI 返回值中排除 None 值在 FastAPI 中使用 Pydantic 的 exclude_none 选项,可以避免在 JSON 序列化时包含 None 值。