Skip to content

Instantly share code, notes, and snippets.

@mrserverless
Last active March 4, 2018 09:52
Show Gist options
  • Save mrserverless/b4abb8380e119be89121f9a9fab62d79 to your computer and use it in GitHub Desktop.
Save mrserverless/b4abb8380e119be89121f9a9fab62d79 to your computer and use it in GitHub Desktop.
Lambda Performance Benchmarks
using System;
namespace AwsDotnetCsharp
{
public class Handler
{
public Response Hello(Request request)
{
return new Response {
statusCode = 200,
body = "hello"
};
}
}
public class Response
{
public int statusCode { get; set;}
public string body {get; set;}
}
public class Request
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment