From 4e10d191756c505d48a56bcaa499954c17f7f0f1 Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Mon, 3 Oct 2016 08:25:31 -0700 Subject: [PATCH] Update default Max Body Size --- .../ResponseCacheOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.ResponseCaching/ResponseCacheOptions.cs b/src/Microsoft.AspNetCore.ResponseCaching/ResponseCacheOptions.cs index 795c80abcf..f530913fb9 100644 --- a/src/Microsoft.AspNetCore.ResponseCaching/ResponseCacheOptions.cs +++ b/src/Microsoft.AspNetCore.ResponseCaching/ResponseCacheOptions.cs @@ -9,9 +9,9 @@ namespace Microsoft.AspNetCore.Builder public class ResponseCacheOptions { /// - /// The largest cacheable size for the response body in bytes. The default is set to 1 MB. + /// The largest cacheable size for the response body in bytes. The default is set to 64 MB. /// - public long MaximumBodySize { get; set; } = 1024 * 1024; + public long MaximumBodySize { get; set; } = 64 * 1024 * 1024; /// /// true if request paths are case-sensitive; otherwise false. The default is to treat paths as case-insensitive.