-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (62 loc) · 2.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>gossiperl - gossip message bus in Erlang</title>
<link href='http://fonts.googleapis.com/css?family=Vesper+Libre:400,500' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
font-family: 'Vesper Libre', serif;
background-color: #fffff;
background-image: url('i/gossiperl.png');
background-repeat: no-repeat;
background-position: 50% 40px;
padding-top: 200px;
padding-bottom: 100px;
}
h1, h4 {
text-align: center;
}
h1 {
font-size: 1.3em;
}
h4 {
font-size: 0.9em;
}
.normal {
font-weight: normal;
}
.body {
padding-top: 20px;
width: 500px;
margin-left: auto;
margin-right: auto;
}
.center {
margin-top: 50px;
text-align: center;
}
a {
color: #a42da4;
}
</style>
<body>
<h1><span class="normal">language agnostic, Apache Thrift based gossip</span><br/>middleware and message bus</h1>
<h4><span class="normal">pronounced</span> [ `gossip,erl ]</h4>
<div class="body">
<p>Gossiperl is a language agnostic, Apache Thrift based gossip middleware and message bus for data dissemination and replication within global cloud environments. Gossiperl provides gossip protocol as a service. Gossiperl is:</p>
<ul>
<li>highly scalable: written in Erlang OTP</li>
<li>highly secure: all traffic encrypted</li>
<li>flexible: no defined communication patterns, applications can form communication in any way desired for the implementation</li>
<li>content independent: any kind data can be distributed, Apache Thrift</li>
<li>configurable: managed with REST API, run-time reconfiguration</li>
</ul>
<dl>
<dt><a href="/d/gossip-euc-2015.pdf">Let's talk gossip - slides</a></dt>
<dd>What is gossip and gossiperl.<br/>Erlang User Conference, 11th of June 2015, Stockholm, Sweden</dd>
</dl>
<p class="center">Created by Rad Gruchalski, 2014<br/>MIT license<br/><a href="https://github.com/gossiperl/gossiperl">Source code</a> | <a href="https://github.com/gossiperl/gossiperl/wiki">Documentation</a></p>
</div>
</body>
</html>