SharePoint 2013: ViewState cache was discontinued on August 2014

During troubleshooting any Sharepoint issues , you might have noticed that the size of the body in the POST requests may increase considerably from a few KB (kilobytes) to hundreds of KBs after you apply October 14, 2014 update for SharePoint Server 2013 (KB2889930) or a later CU.

The state of the webparts are maintained between post backs via a mechanism called ViewState which is a serialized version of the objects sent back and forth via a FORM hidden field called __VIEWSTATE. SharePoint prior to version 15.0.4653.1000 by default used to save the ViewState in AppFabric cache (a.k.a. ViewState Cache) keeping only a key to this ViewState in the __VIEWSTATE hidden field. This behavior was causing the state to be lost in some situations like during an update or when AppFabric was restarted.

Resolution

The occasional increase of the ViewState size is not a problem for most situations and can be ignored. Pages containing Out-Of-The-Box (OOB) SharePoint webparts holds very little information in ViesState. For some environments with custom webparts, the size can increase dramatically and it may be desirable to persist state another way. For these environments. We suggest to persist ViewState using regular ASP.NET techniques. See more in "More Information" section.

More Information

Specifying Where to Persist the View State https://msdn.microsoft.com/en-us/library/ms972976.aspx#viewstate_topic10

POST BY : Rodney Viana [MSFT]