Advertisement · 728 × 90
#
Hashtag
#serversideSwift2025
Advertisement · 728 × 90
Preview
Release 2.0.0 · swift-server/swift-aws-lambda-runtime The AWS Lambda Runtime for Swift v2 is now officially available. Overview Swift AWS Lambda Runtime v2 introduces a complete redesign of the API with async/await-first architecture, response streami...

🚀 Swift AWS Lambda Runtime v2 is out!
Build modern, scalable, and efficient Lambda functions in pure Swift!

Full async/await, response streaming, background tasks, and Swift 6 support.

Release notes & docs: github.com/swift-ser...

#SwiftLang #Serverless #serversideswift2025

17 6 0 0
Post image

Another amazing edition of ServerSide.swift has wrapped up! #ServerSideSwift2025
Back home, inspired by this incredible community and Apple’s latest announcements.
To me, it’s clearer than ever: Swift is destined to take over the world 😏

4 0 0 0

Architecture: Client app calls DCDevice.current.generateToken(), sends to your server. Server signs JWT with ES256 + your key, queries Apple's API with device token. You get/set 2 bits per device. Use for rate limiting, fraud detection. #swiftlang #serversideSwift2025

0 0 1 0
Preview
Validating apps that connect to your server | Apple Developer Documentation Verify that connections to your server come from legitimate instances of your app.

Device Check on server-side Swift: You need the private key from App Store Connect, not embedded in your app. The app uses DeviceCheck framework client-side, your Vapor/Hummingbird server validates tokens server-side with the .p8 key. #swiftlang #serversideSwift2025

3 0 1 0
Post image

2025 - that's a wrap

#swiftlang
#serversideswift2025

23 4 1 3

Swift's async/await structured concurrency gives you fine-grained control over distributed operations. With SE-0414's task isolation and SE-0420's networking improvements, you can build custom replication protocols that outperform Go's goroutines in memory efficiency. #swiftlang #serversideSwift2025

1 0 0 0
GitHub - apple/container: A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon. A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon. - GitHub - apple/container: A tool for creati...

If a team that lived in C and Go can build production container infrastructure in Swift, the language is ready for serious server-side systems work. - Eric Ernst, Apple #swiftlang #serversideSwift2025

github.com/apple/contai...

10 6 0 0
Post image

Our final talk of the conference! Eric Ernst is giving us a deep dive into the new container frameworks released for Swift at WWDC this year #serversideswift2025 #swiftlang

7 1 0 0
Post image

To kick off the final session, Mads Odgaard is giving an update on Swift Java interoperability #serversideswift2025 #swiftlang

3 0 0 0
Post image

Next lightning talk, Eric Bariaux is going to cover everything you need to know about Cryptography! #serversideswift2025 #swiftlang

5 0 0 0
Post image

During her AWS internship, Mona Dierickx built the Swift Bedrock Library - a type-safe wrapper that turns 20 lines of boilerplate AWS SDK code into 5 clean lines. No more string model IDs or manual config. #swiftlang #serversideSwift2025

4 0 1 0
Post image

The next lightning talk is from Mona Dierickx talking about her experiences making generative AI easy to use from Swift #serversideswift2025 #swiftlang

5 0 0 0
Post image Post image

Swift gets durable workflows! The Swift Temporal SDK brings true fault-tolerant execution to server-side Swift. Write workflows that survive crashes, restarts, and failures—your code persists state automatically and resumes from interruption.

#swiftlang #serversideSwift2025

7 1 1 0

@tachyonics.bsky.social Question on smockable's preprocessorFlag option I feel like it should be the default to wrap generated code from the macro with DEBUG NO? #swiftlang #serversideSwift2025

0 0 0 0

The Swift compiler is your first line of defense for server deployments. Pull runtime failures into compile-time by avoiding Any types, untyped dictionaries, and implicit unwraps. Type safety isn’t academic—it’s what keeps your servers running. #swiftlang #serversideSwift2025

1 1 0 0

🔍 Context propagation in distributed tracing

From @slashmo's FOSDEM 2025 talk on server-side Swift observability:

When a request hits your edge proxy, it creates a root span. How does that trace context flow through your microservices?

#swiftlang #serversideSwift2025

0 0 1 0
Post image Post image

To take us into lunch, Si Beaumont and Moritz Lang are giving us a deep dive into Observability with Swift #serversideswift2025 #swiftlang

3 0 0 0
Preview
GitHub - swift-serverless/Breeze: A Serverless API Template Generator for Server-Side Swift A Serverless API Template Generator for Server-Side Swift - swift-serverless/Breeze

🚀 It's official! Breeze 1.0.0 is here! 🎉
Building serverless APIs in Swift has never been easier.
This major release solidifies support for:
✅ Swift 6.2.0
✅ swift-aws-lambda-runtime 2.0.0

👉 github.com/swift-server...

#SwiftLang #Serverless #OpenSource #ServerSideSwift2025

8 4 0 0
Post image

After the break, Simon Pilkington is on stage to give us some effective strategies for testing and deploying Swift systems #serversideswift2025 #swiftlang

5 0 0 1
Post image

First talk of the morning is George Barnett introducing to gRPC with Swift #serversideswift2025 #swiftlang

5 0 0 0
Post image

Today was day 1/2 #serversideSwift2025 I loved it. I took audio using whisper note and fed transcriptions into claude. Then I installed historian mcp to analyse my conversations. This I feed to claude code to build me a swift agent. If it works I will open source if there is interest? #swiftlang

4 0 0 0

Wow @breakth-esystem.bsky.social ‘s presentation on the lessons and progress of @telemetrydeck.com was just fantastic #ServerSideSwift2025

6 1 1 0

Georg Tuparev #serversideSwift2025 13.4PB containers (6 racks, 42 pods) storing 42 months of observatory data. 10Gb/s backbone, 11kW peak power. Using SeaweedFS bridge during migration from Java to Swift. Transaction flow: Client login → Request UUID → Stream data → Checksum → Replicate.

#swiftlang

4 0 0 0

At #serversideSwift2025 - @serversideswift.info on why Span matters for cross-platform Swift.

ByteBuffer (server), Data (iOS), UInt8 arrays (embedded) - different bag-of-bytes types everywhere. Span gives a unified view, eliminates copies in JSON encoding/decoding.

#swiftlang

3 0 0 0

Emma Gaubert breaking down Vapor vs Hummingbird at #serversideSwift2025:

Vapor = opinionated, batteries included
Hummingbird = flexible, bring your own components

Which trade-offs fit your use case? #swiftlang

4 0 1 0

@massicotte.org on Swift concurrency. His talk on non-isolated non-sending in 6.2 solves the isolation mismatch issues.

The @concurrent attribute gives explicit actor hopping control.

What isolation patterns work for your server code?

@serversideswift.info #serversideSwift2025 #swiftlang

4 0 0 0
Preview
Iterate Over Parameter Packs in Swift 6.0 Parameter packs, introduced in Swift 5.9, make it possible to write generics that abstract over the number of arguments. This eliminates the need to have overloaded copies of the same generic function...

Adam Fowler mentioned valkey-swift uses parameter packs for type-safe commands—but said it was "quite problematic". tradeoff: GET returns the right type, not a generic token

Anyone using it in production? Worth the complexity?

swift.org/blog/pack-iteration

#swiftlang #serversideSwift2025

3 0 0 0
Preview
GitHub - valkey-io/valkey-swift: Valkey client written in Swift Valkey client written in Swift. Contribute to valkey-io/valkey-swift development by creating an account on GitHub.

Adam Fowler just demoed a real-time chat server valkey-swift Hummingbird at #serversideSwift2025. Cluster setup, streams for pub/sub, Redis compatibility.

Built a chat app in ~100 lines. What's your caching/messaging stack look like?

github.com/valkey-io/valkey-swift
#swiftlang

2 0 0 0
Post image

Adam Fowler is on stage talking about his new library Valkey-Swift! #serversideswift2025 #swiftlang

2 0 0 0
Post image

Swift 6.2 brings C performance safely Ben Cohen keynote at #serversideSwift2025

• Span - borrowed views, compile-time lifetime checks
• InlineArray - stack allocation
• UniqueArray - no reference counting in swift-collections.

Swift Profile Recorder for in-process profiling released.
#swiftlang

2 0 0 0