Por padrão, o armazenamento em cache está desabilitado nos filtros ISAPI e não acredito que possa ser habilitado por meio da GUI. Instale o filtro ISAPI e ative o recurso de armazenamento em cache, modificando a seção <isapiFilters>
do web.config ou utilizando appcmd.exe
.
appcmd.exe Exemplo:
appcmd.exe set config -section:system.webServer/isapiFilters /+"[name='YourJsonIsapi',path='c:\yourpath\YourJsonIsapi.dll',enabled='True',enableCache='True']" /commit:apphost
web.config Exemplo:
<configuration>
<system.webServer>
<isapiFilters>
<filter
name="YourJsonIsapi"
enabled="true"
enableCache="true"
path="C:\yourpath\YourJsonIsapi.dll" />
</isapiFilters>
</system.webServer>
</configuration>