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 "Cache Service"

(New page: {{#eclipseproject:technology.higgins|eclipse_custom_style.css}} The Cache Service provide a way for other components to cache its data to increase performance. ==Details== * ''Status'': f...)
 
(Links)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
 
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
The Cache Service provide a way for other components to cache its data to increase performance.
+
The Cache Service provide common way for other components to cache their preformance sensitive data.
 +
 
  
==Details==
 
* ''Status'': first code in B-1-1M1
 
* ''Language'': Java
 
* ''Packaging'': OSGI bundle
 
  
 
==Service==
 
==Service==
Line 12: Line 9:
 
====Responsibilities====
 
====Responsibilities====
 
* Configure and provide access to one of [[Cache Provider]]s to be used for caching.
 
* Configure and provide access to one of [[Cache Provider]]s to be used for caching.
* Provide reference "NoCache" implementation.
+
* Provide reference "NoCache" implementation of [[Cache Provider]] so Cache Service could be used even if there is no any other [[Cache Provider]] available/configured.
  
====Dependencies====
 
  
==Links==
 
  
 
[[Category:Higgins Components]]
 
[[Category:Higgins Components]]

Latest revision as of 21:53, 14 July 2009

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}} The Cache Service provide common way for other components to cache their preformance sensitive data.


Service

Manages configuration of Cache Provider which is used to cache data.

Responsibilities

  • Configure and provide access to one of Cache Providers to be used for caching.
  • Provide reference "NoCache" implementation of Cache Provider so Cache Service could be used even if there is no any other Cache Provider available/configured.

Back to the top