惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Privacy International News Feed
WordPress大学
WordPress大学
Security Latest
Security Latest
Cyberwarzone
Cyberwarzone
K
Kaspersky official blog
Cisco Talos Blog
Cisco Talos Blog
Microsoft Security Blog
Microsoft Security Blog
G
GRAHAM CLULEY
N
News | PayPal Newsroom
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
美团技术团队
J
Java Code Geeks
I
Intezer
The Cloudflare Blog
SecWiki News
SecWiki News
S
Secure Thoughts
Microsoft Azure Blog
Microsoft Azure Blog
V2EX - 技术
V2EX - 技术
C
Cyber Attacks, Cyber Crime and Cyber Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Spread Privacy
Spread Privacy
D
DataBreaches.Net
S
Security Affairs
Help Net Security
Help Net Security
S
Securelist
F
Full Disclosure
C
Check Point Blog
F
Fortinet All Blogs
Know Your Adversary
Know Your Adversary
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
The Register - Security
The Register - Security
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园_首页
G
Google Developers Blog
Google Online Security Blog
Google Online Security Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
Application and Cybersecurity Blog
Application and Cybersecurity Blog
H
Hacker News: Front Page
L
LINUX DO - 热门话题
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
L
LangChain Blog

AWS Open Source Blog

Open Protocols with the Strands Agents SDK | Amazon Web Services Building secure AI agents at scale: Introducing Loom for AWS | Amazon Web Services Introducing MCP server for Registry of Open Data on AWS | Amazon Web Services Building a Stateful IT Service Desk Agent with LangGraph on Amazon EKS | Amazon Web Services Open Governance for MySQL: A Step Forward for the Community | Amazon Web Services Governing AI Assets at Scale with MCP Gateway and Registry | Amazon Web Services Introducing Trusted Remote Execution: Policy-Enforced Scripts for AI Agents and Humans | Amazon Web Services Decoupling Authorization at Scale: MongoDB Atlas and Cedar-Based Resource Policies | Amazon Web Services Deploying cloud-based engineering workbenches with the Virtual Engineering Workbench on AWS | Amazon Web Services OCSF Achieves ITU Support: Powering AI-Ready Security Operations | Amazon Web Services AWS and Others Invest $12.5M to Defend the Open Source Ecosystem from AI Threats | Amazon Web Services Introducing Strands Labs: Get hands-on today with state-of-the-art, experimental approaches to agentic development | Amazon Web Services Cedar Joins CNCF as a Sandbox Project | Amazon Web Services Building intelligent physical AI: From edge to cloud with Strands Agents, Bedrock AgentCore, Claude 4.5, NVIDIA GR00T, and Hugging Face LeRobot | Amazon Web Services Shaping the future of MCP: AWS’s commitment and vision | Amazon Web Services Introducing Strands Agent SOPs – Natural Language Workflows for AI Agents | Amazon Web Services Announcing ml-container-creator for easy BYOC on SageMaker | Amazon Web Services Jupyter Deploy: Create a JupyterLab application with real-time collaboration in the cloud in minutes | Amazon Web Services Introducing CLI Agent Orchestrator: Transforming Developer CLI Tools into a Multi-Agent Powerhouse | Amazon Web Services Strands Agents and the Model-Driven Approach | Amazon Web Services AWS joins the DocumentDB project to build interoperable, open source document database technology | Amazon Web Services Open Protocols for Agent Interoperability Part 4: Inter-Agent Communication on A2A | Amazon Web Services Powering AI-Driven Security with the Open Cybersecurity Schema Framework | Amazon Web Services Introducing Strands Agents 1.0: Production-Ready Multi-Agent Orchestration Made Simple | Amazon Web Services Open Protocols for Agent Interoperability Part 3: Strands Agents & MCP | Amazon Web Services Open Protocols for Agent Interoperability Part 2: Authentication on MCP | Amazon Web Services Introducing AWS CDK Community Meetings | Amazon Web Services Secure your Express application APIs in 5 minutes with Cedar | Amazon Web Services
The Swift AWS Lambda Runtime moves to AWSLabs | Amazon Web Services
2025-11-07 · via AWS Open Source Blog

AWS Open Source Blog

We’re excited to share that the Swift AWS Lambda Runtime project has officially moved to the AWS Labs organization. You can now find it here:
? https://github.com/awslabs/swift-aws-lambda-runtime

This move marks a new chapter for the project, while maintaining full continuity with its roots.

A thank you to the Swift community

The Swift AWS Lambda Runtime was originally created seven years ago by the Swift community (the initial commit was made the 1st of November 2018), as part of a broader effort to make Swift a powerful choice for server-side development. Since then, the project has been an incubating project as part as the Swift Server Workgroup (SSWG).

We want to thank the 58 contributors who have helped shape this project through their code, feedback, and support. Their collective work established a solid foundation that has allowed Swift developers to confidently run their code on AWS Lambda.

Why choose Swift for your server-side workload

Swift has evolved far beyond its origins as a language for Apple platforms — it’s now a robust, high-performance choice for building modern server-side systems. Swift’s combination of type safety, predictable performance, and developer-friendly syntax makes it an appealing option for backend services where reliability, maintainability, and scalability matter most.

Over the past few years, several organizations have successfully deployed Swift in production on the server. According to the Swift.org ecosystem overview, companies migrating from other languages have achieved impressive results: one reported a 4× performance increase after switching to Swift, while another saw 40 % more throughput, 50 % less hardware usage, and 90 % lower memory consumption compared to their Java-based implementation. Web frameworks such as Vapor and Hummingbird have made Swift a first-class option for developing REST APIs, microservices, and event-driven systems.

Whether you’re building a traditional web service, a distributed system, or serverless functions, Swift provides the safety and speed developers expect — without compromising on readability or productivity.

Why choose Swift for your Lambda functions

The Swift AWS Lambda Runtime allows you to write Lambda functions using the Swift programming language, bringing the language’s safety, performance, and expressiveness to the world of serverless computing.

In an event-driven architecture like AWS Lambda — where functions start and stop on demand and billing is measured in milliseconds — every millisecond and megabyte matters. Swift’s design makes it especially well-suited for this environment: it’s fast to start, efficient in memory use, and helps developers produce safe, predictable code that performs consistently under varying loads.

Here are a few of the advantages that make Swift a great fit for Lambda workloads:

  • Performance – Swift is fast, leveraging LLVM optimizations and native execution on Amazon Linux environments.
  • Memory efficiency – Swift’s small memory footprint and automatic memory management are crucial in Lambda’s constrained runtime environment, directly impacting both performance and cost.
  • Type safety – Swift’s strong typing and compiler checks help catch errors at build time, reducing runtime issues.
  • Concurrency safety – Swift’s strict concurrency checking at compile time helps prevent data races and concurrency bugs before deployment.
  • Modern developer experience – Swift’s concise syntax, rich type system, and expressive APIs make it easy to write, test, and maintain Lambda functions efficiently.

Whether you’re building APIs, event-driven microservices, or data processing functions, Swift offers a powerful, modern option for your serverless workloads.

What changes — and what stays the same

Going forward, governance of the project will transition to AWS, under the AWS Labs GitHub organization. There will be no major changes in how the project works today. The same codebase, APIs, and open source spirit remain intact. The project remains an incubation project as part of the Swift Server Workgroup.

Our goal with this move is to increase visibility for the runtime and make it easier for Swift developers — and the broader serverless community — to discover, use, and contribute to it. By hosting it under AWS Labs, we hope to strengthen the collaboration between the Swift open source communities and AWS teams, and to encourage more experimentation and innovation in this space.

Open source Lambda runtimes

Swift joins a growing family of open source Lambda runtimes maintained by the community and AWS. If you’re working with other languages, you might be interested in exploring all the open source Lambda runtimes in the official documentation.

Get involved

The Swift AWS Lambda Runtime remains an open source project, and community contributions are at its heart. We warmly welcome issues and pull requests from developers who want to help improve the runtime or extend its capabilities.

Visit the repository, explore the documentation, and join us in building the next generation of Swift serverless applications:

? https://github.com/awslabs/swift-aws-lambda-runtime