browser.caching.resource_type.maxCacheSize
Maximum size (bytes) for cached resource types.
Once the cache is full, the Voice Browser service starts removing the least recently used entries to keep the cache size within configured limits. The resource_type can be context, data page, or script:
- context—An XML context file (see Using context files for more information).
- data—A session.xml file, or other data fetched for the voice application (for example, data fetched by an <object> element in a VoiceXML page).
- page—A VoiceXML page (*.vxml) or Java Server Page (*.jsp).
- script—An ECMAScript script fetched for the voice application.
The defaults are:
- context: 1000000
- data: 1000000
- page: 2000000
- script: 1000000
For example, if you have one page cached with 500 KB and another with 1 MB, you have used up 1.5 MB of the 2 MB cache. Once you go over the 2 MB threshold, the Voice Browser service drops the least recently used page.
See Deployment and caching for more information.