Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Clearing local storage"

(New page: Orion caches state in a relatively recent HTML5 facility called [http://dev.w3.org/html5/webstorage/ local storage]. Most browsers don't currently have good support for clearing state from...)
 
(Add Category Orion)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
Orion caches state in a relatively recent HTML5 facility called [http://dev.w3.org/html5/webstorage/ local storage]. Most browsers don't currently have good support for clearing state from this cache when it is stale. Typical "clear history" or "clear cookies" options in your browser probably won't clear this state out.
 
Orion caches state in a relatively recent HTML5 facility called [http://dev.w3.org/html5/webstorage/ local storage]. Most browsers don't currently have good support for clearing state from this cache when it is stale. Typical "clear history" or "clear cookies" options in your browser probably won't clear this state out.
  
Because Orion is very early in development, we often have to make incompatible changes to our cached date. When you start using a new Orion build on the same server where you used an older build, it is recommended to clear your browser's local storage. The easiest way to do this is to navigate to the Orion server main page, and then type the following in your browser's location bar:
+
Because Orion is very early in development, we sometimes have to make incompatible changes to our cached date. When you start using a new Orion build on the same server where you used an older build, it is recommended to clear your browser's local storage. The easiest way to do this is to navigate to the Orion server main page, and then type the following in your browser's location bar:
  
 
  javascript:localStorage.clear()
 
  javascript:localStorage.clear()
  
 
Hit enter, and the cache will be cleared.
 
Hit enter, and the cache will be cleared.
 +
 +
[[Category:Orion]]

Latest revision as of 19:44, 11 February 2014

Orion caches state in a relatively recent HTML5 facility called local storage. Most browsers don't currently have good support for clearing state from this cache when it is stale. Typical "clear history" or "clear cookies" options in your browser probably won't clear this state out.

Because Orion is very early in development, we sometimes have to make incompatible changes to our cached date. When you start using a new Orion build on the same server where you used an older build, it is recommended to clear your browser's local storage. The easiest way to do this is to navigate to the Orion server main page, and then type the following in your browser's location bar:

javascript:localStorage.clear()

Hit enter, and the cache will be cleared.

Back to the top