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?
Hey, what is your opinion about streaming response? AWS announced support for streaming response for AWS Lambda with URL.
The idea is that the
handlerfunction is wrapped bystreamifyResponsefunction (provided by AWS):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?