-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcache.html
More file actions
134 lines (128 loc) · 5.3 KB
/
cache.html
File metadata and controls
134 lines (128 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Everit Opensource Cache</title>
<link rel="icon" type="image/ico" href="fonts/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/docs.min.css" rel="stylesheet">
<link href="css/everit.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<script src="js/respond.matchmedia.addListener.min.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push([ '_setAccount', 'UA-15041869-4' ]);
_gaq.push([ '_setDomainName', 'everit.org' ]);
_gaq.push([ '_trackPageview' ]);
</script>
</head>
<body data-spy="scroll" data-target="#affix-nav">
<header class="navbar navbar-static-top bs-docs-nav" id="top" role="banner">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span
class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">Everit</a>
</div>
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li><a href="components.html">Components</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="oldsite.html">Old site</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://www.everit.biz/" target="_blank">Enterprise</a></li>
<li><a href="http://everitorg.wordpress.com/" target="_blank">Blog</a></li>
</ul>
</nav>
</div>
</header>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="bs-docs-masthead everit-header">
<div class="container">
<span class="bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-outline"> <img class="logo"
src="fonts/sbz_e.svg" alt="E">
</span>
<p class="lead">Caching in OSGi</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="col-md-10 col-sm-12 col-xs-12">
<div class="row bs-docs-featurette" id="dev_tools">
<h2 class="bs-docs-featurette-title">Cache</h2>
<div class="row">
<div class="col-md-6">
<h2>Cache API</h2>
<p>Cache instances can be used inside an OSGi environment with this API. The implementations should
provide at least two components. One for CacheFactory and one for CacheConfiguration.</p>
<p>
<a class="btn btn-outline btn-default" href="https://github.com/everit-org/cache-api" role="button"
target="_blank">View details »</a>
</p>
</div>
<div class="col-md-6">
<h2>Cache Infinispan</h2>
<p>An Infinispan based component which implements the org.everit.osgi.cache.api so it can configure and
return a ready to use cache instance.</p>
<p>
<a class="btn btn-outline btn-default" href="https://github.com/everit-org/cache-infinispan" role="button"
target="_blank">View details »</a>
</p>
</div>
</div>
<div class="col-md-6">
<h2>Cache Noop</h2>
<p>NoOperation implementation of cache-api.</p>
<p>
<a class="btn btn-outline btn-default" href="https://github.com/everit-org/cache-noop" role="button"
target="_blank">View details »</a>
</p>
</div>
</div>
</div>
</div>
<!-- Footer
================================================== -->
<footer class="bs-docs-footer" role="contentinfo">
<div class="container">
<div class="bs-docs-social">
<ul class="bs-docs-social-buttons">
<li class="follow-btn"><a href="https://twitter.com/EveritOrg" class="twitter-follow-button"
data-show-count="true">Follow @EveritOrg</a></li>
<li class="tweet-btn"><a href="https://twitter.com/share" class="twitter-share-button"
data-url="http://www.everit.org/">Tweet</a></li>
</ul>
</div>
</div>
</footer>
<!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/bootstrap.min.js "></script>
<script src="js/everit.js "></script>
<script type="text/javascript">
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl'
: 'http://www')
+ '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>