Res Firefox



  1. Adblock Firefox
  2. Res Twitter Expando Firefox

Due to extra security restrictions in Firefox, a pop-up is opened in which you must click this button before Firefox asks you whether you will grant permissions. RES's Backup and Restore includes a button to download all of your RES settings and data to a file. Note:-This site is best viewed in Mozilla Firefox 8.0/ IE 9.0 and above browsers only.

Adblock Firefox

The PearsonAccess Next website is the portal to all Pearson services used by Minnesota school districts. Use this site to access test administration activities, training, and other resources.


Firefox

PearsonAccess Next

Sign in to PearsonAccess Next for all administrative tasks for test administration.

Resources & Training

Access trainings, manuals, and other resources to prepare for and administer assessments.

Preparing for Testing

Access resources, like testing directions, item samplers, and student tutorial.

Technology

Prepare your system for online assessments.

Reporting Resources

Access reporting user guides and recorded videos for more information about Individual Student Reports and other reports.

MDE Updates

Access an archive of the Assessment Update and Teacher Newsletter.

Res Twitter Expando Firefox

Support

Assistance is available via email or phone.

Suite

The cache read-only property of the Request interface contains the cache mode of the request. It controls how the request will interact with the browser's HTTP cache.

Syntax

Value

A RequestCache value. The available values are:

  • default — The browser looks for a matching request in its HTTP cache.
    • If there is a match and it is fresh, it will be returned from the cache.
    • If there is a match but it is stale, the browser will make a conditional request to the remote server. If the server indicates that the resource has not changed, it will be returned from the cache. Otherwise the resource will be downloaded from the server and the cache will be updated.
    • If there is no match, the browser will make a normal request, and will update the cache with the downloaded resource.
  • no-store — The browser fetches the resource from the remote server without first looking in the cache, and will not update the cache with the downloaded resource.
  • reload — The browser fetches the resource from the remote server without first looking in the cache, but then will update the cache with the downloaded resource.
  • no-cache — The browser looks for a matching request in its HTTP cache.
    • If there is a match, fresh or stale, the browser will make a conditional request to the remote server. If the server indicates that the resource has not changed, it will be returned from the cache. Otherwise the resource will be downloaded from the server and the cache will be updated.
    • If there is no match, the browser will make a normal request, and will update the cache with the downloaded resource.
  • force-cache — The browser looks for a matching request in its HTTP cache.
    • If there is a match, fresh or stale, it will be returned from the cache.
    • If there is no match, the browser will make a normal request, and will update the cache with the downloaded resource.
  • only-if-cached — The browser looks for a matching request in its HTTP cache.
    • If there is a match, fresh or stale, it will be returned from the cache.
    • If there is no match, the browser will respond with a 504 Gateway timeout status.
    The 'only-if-cached' mode can only be used if the request's mode is 'same-origin'. Cached redirects will be followed if the request's redirect property is 'follow' and the redirects do not violate the 'same-origin' mode.

Example

Specifications

SpecificationStatusComment
Fetch
The definition of 'cache' in that specification.
Living StandardInitial definition

Browser compatibility

BCD tables only load in the browser

Firefox

See also