web-rest-api-benchmark icon indicating copy to clipboard operation
web-rest-api-benchmark copied to clipboard

How about making this a plain field benchmark?

Open silkentrance opened this issue 3 years ago • 0 comments

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.

silkentrance avatar Apr 08 '21 19:04 silkentrance