-
Notifications
You must be signed in to change notification settings - Fork 171
Open
Description
Hey, what is your opinion about streaming response? AWS announced support for streaming response for AWS Lambda with URL.
The idea is that the handler function is wrapped by streamifyResponse function (provided by AWS):
exports.handler = awslambda.streamifyResponse(
async (event, responseStream, context) => {
responseStream.setContentType(“text/plain”);
responseStream.write(“Hello, world!”);
responseStream.end();
}
);
More documentation from AWS:
https://aws.amazon.com/blogs/compute/introducing-aws-lambda-response-streaming/
Is adding response streams something you would consider to support?
johnimholawal, g-getsov, rgmann, jdrydn, Jackman3005 and 4 more
Metadata
Metadata
Assignees
Labels
No labels