You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+82-13Lines changed: 82 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@
10
10
11
11
## Community
12
12
13
-
* 🤗️ [Join our online community](https://discord.gg/skW3AZ6uGd) for help, sharing feedback and talking to the community.
14
-
* 📖 [Check out our documentation](https://docs.restate.dev) to get quickly started!
15
-
* 📣 [Follow us on Twitter](https://twitter.com/restatedev) for staying up to date.
16
-
* 🙋 [Create a GitHub issue](https://github.com/restatedev/sdk-java/issues) for requesting a new feature or reporting a problem.
17
-
* 🏠 [Visit our GitHub org](https://github.com/restatedev) for exploring other repositories.
13
+
- 🤗️ [Join our online community](https://discord.gg/skW3AZ6uGd) for help, sharing feedback and talking to the community.
14
+
- 📖 [Check out our documentation](https://docs.restate.dev) to get quickly started!
15
+
- 📣 [Follow us on Twitter](https://twitter.com/restatedev) for staying up to date.
16
+
- 🙋 [Create a GitHub issue](https://github.com/restatedev/sdk-java/issues) for requesting a new feature or reporting a problem.
17
+
- 🏠 [Visit our GitHub org](https://github.com/restatedev) for exploring other repositories.
18
18
19
19
## Using the SDK
20
20
@@ -58,6 +58,75 @@ async fn main() {
58
58
}
59
59
```
60
60
61
+
## Running on Lambda
62
+
63
+
The Restate Rust SDK supports running services on AWS Lambda using Lambda Function URLs. This allows you to deploy your Restate services as serverless functions.
64
+
65
+
### Setup
66
+
67
+
First, enable the `lambda` feature in your `Cargo.toml`:
68
+
69
+
```toml
70
+
[dependencies]
71
+
restate-sdk = { version = "0.1", features = ["lambda"] }
0 commit comments