www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Is there a aws-lambda-d runtime implement ?

reply Newbie2019 <newbie2019 gmail.com> writes:
Aws lambda support custom runtime:
https://github.com/awslabs/aws-lambda-cpp
https://github.com/awslabs/aws-lambda-rust-runtime

Is there a aws-lambda-d runtime ?
Jun 30 2019
next sibling parent reply a11e99z <black80 bk.ru> writes:
On Sunday, 30 June 2019 at 17:01:03 UTC, Newbie2019 wrote:
 Aws lambda support custom runtime:
 https://github.com/awslabs/aws-lambda-cpp
 https://github.com/awslabs/aws-lambda-rust-runtime

 Is there a aws-lambda-d runtime ?
through process pipes https://awslambda-d.readthedocs.io/en/latest/
Jun 30 2019
parent reply Newbie2019 <newbie2019 gmail.com> writes:
On Sunday, 30 June 2019 at 18:13:51 UTC, a11e99z wrote:
 through process pipes
 https://awslambda-d.readthedocs.io/en/latest/
This seems just a nodejs runtimes, which is work but with extra CPU time cost.
Jun 30 2019
next sibling parent Laeeth Isharc <laeeth kaleidic.io> writes:
On Monday, 1 July 2019 at 04:38:23 UTC, Newbie2019 wrote:
 On Sunday, 30 June 2019 at 18:13:51 UTC, a11e99z wrote:
 through process pipes
 https://awslambda-d.readthedocs.io/en/latest/
This seems just a nodejs runtimes, which is work but with extra CPU time cost.
If it matters to you, then I don't think it would be much work to write a runtime in D. It's only 500 lines of C++. https://github.com/awslabs/aws-lambda-cpp/blob/master/src/runtime.cpp
Jul 01 2019
prev sibling parent 9il <ilyayaroshenko gmail.com> writes:
On Monday, 1 July 2019 at 04:38:23 UTC, Newbie2019 wrote:
 On Sunday, 30 June 2019 at 18:13:51 UTC, a11e99z wrote:
 through process pipes
 https://awslambda-d.readthedocs.io/en/latest/
This seems just a nodejs runtimes, which is work but with extra CPU time cost.
Maybe this one https://github.com/vibe-aws/vibe-aws
Jul 02 2019
prev sibling parent Seb <seb wilzba.ch> writes:
On Sunday, 30 June 2019 at 17:01:03 UTC, Newbie2019 wrote:
 Aws lambda support custom runtime:
 https://github.com/awslabs/aws-lambda-cpp
 https://github.com/awslabs/aws-lambda-rust-runtime

 Is there a aws-lambda-d runtime ?
A few options: https://github.com/IoTone/Lamb-D http://code.dlang.org/packages/awslambda_d
Jul 04 2019