Skip to content

Commit 7f18614

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 941cd61 + 9a99b0d commit 7f18614

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Kotlin Native Runtime for AWS Lambda
2-
32
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.trueangle/lambda-runtime/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.trueangle/lambda-runtime/badge.svg)
43

54
A runtime for executing AWS Lambda Functions powered by Kotlin Native, designed to mitigate known
@@ -21,8 +20,7 @@ following [OS-only runtime machines](https://docs.aws.amazon.com/lambda/latest/d
2120

2221
Performance benchmarks reveal that Kotlin Native's "Hello World" Lambda function, executed on Amazon
2322
Linux 2023 (x86_64) with 1024MB of memory, ranks among the top 5 fastest cold starts. Its
24-
performance is on par with Python and .NET implementations. For a comparison with other languages (
25-
including Java), visit https://maxday.github.io/lambda-perf/.
23+
performance is on par with Python and .NET implementations. For a comparison with other languages (including Java), visit https://maxday.github.io/lambda-perf/.
2624

2725
![Kotlin Native AWS Lambda Runtime benchmarks](docs/performance_hello_world.png)
2826

@@ -134,7 +132,7 @@ used. Here's how to run project's sample:
134132
3. Run `docker build -t sample:latest .`
135133
4. Start server `docker run -p 9000:8080 sample:latest`
136134
5. Execute function
137-
via `curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}'`
135+
using `curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{}'`
138136

139137
## Build and deploy to AWS
140138

@@ -220,4 +218,4 @@ Log.fatal(message: T?) // Messages about serious errors that cause the applicati
220218
```bash
221219
docker build -t sample .
222220
docker run --rm -v $(pwd):/sample -w /sample sample ./gradlew build
223-
```
221+
```

0 commit comments

Comments
 (0)