Published on2024年10月31日Best fit for long-running taskAWSlong-runningECSLambdaAWS-BatchWhen it comes to long-running tasks in AWS, the most-chosen solutions are AWS Lambda and AWS EC2, but there are still some other options to consider before jumping to EC2 when Lambda can not meet your requirements.
Published on2023年12月11日Why pnpmnpmyarnpnpm上文笔者详细回顾了 `npm` 的演`进之路以`及在依赖树解析上的算法迭代,同时也简单地和 yarn 进行了对比。不难看出,它们尤其在依赖树的解析上煞费苦心,从嵌套算法到扁平算法,从发现重复依赖到 hoist 依赖优化等等
Published on2023年11月26日Compare npm and yarnnpmyarn在谈起 Node.js 的包管理器时,npm 和 yarn 肯定是讨论最多的。在 2023 年的今天,npm 和 yarn 到底还有什么差别,而我们又应该选择什么工具作为 Node.js 最佳的包管理器呢?
Published on2023年8月5日OpenAI Function callingOpenAIchatGPTLLMfunction-calling最近 OpenAI 在 6 月 13 号发布了新 feature,主要针对模型进行了优化,提供了 function calling 的功能,该 feature 对于很多集成 OpenAI 的应用来说绝对是一个“神器”。
Published on2023年4月11日GraphQL中的N+1问题graphqlchatGPTGraphql是一种API查询语言和运行时环境,可以帮助开发人员快速构建可伸缩的API。然而,尽管Graphql可以提供一些优秀的查询性能和数据获取的能力,但是在使用Graphql的过程中,开发人员也会遇到一些常见问题,其中最常见的一个问题是N+1问题。