web-rest-api-benchmark
web-rest-api-benchmark copied to clipboard
How about making this a plain field benchmark?
In the Dot.Net code you use
[HttpGet]
[Route("/countries")]
public IEnumerable<Country> countries()
{
return context.Country.ToList();
}
this will cause the application to stream out the existing countries, not necessarily pre-rendering the whole shebang to a single JSON/Text.