I have followed all the documentation to setup ResponseCompression in my .NET Core 2.0 Web API project but I cannot see a difference in the size of the transfer. Here are the before and after results using Postman:
Before Compression: https://i.stack.imgur.com/jAAuy.jpg
After Compression: https://i.stack.imgur.com/HviP5.jpg
Here is the beginning of my ConfigureServices method in Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.AddResponseCompression(options =>
{
options.Providers.Add<GzipCompressionProvider>();
});
services.Configure<GzipCompressionProviderOptions>(options =>
{
options.Level = CompressionLevel.Optimal;
});
Here is my Configure method in Startup.cs:
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseResponseCompression();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
});
app.UseMvc();
}
Here is my Get action on my VendorController:
[HttpGet]
public IActionResult Get()
{
var stuff = new Collection<string>();
for (int i = 0; i < 100000; i++)
{
stuff.Add($"hello{i}");
}
return Ok(stuff);
}
I am not using IIS, here is my Program.cs:
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build();
}
Any help would be MUCH appreciated. All the documentation says that this should give me a pretty big difference in the size of my transfer.