-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
341 lines (304 loc) · 19.6 KB
/
index.html
File metadata and controls
341 lines (304 loc) · 19.6 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>GhostDB | Ultra Fast Distributed Cache</title>
<meta name="description" content="GhostDB is a distributed, in-memory, general purpose key-value data cache.">
<meta name="keywords" content="GhostDB, Cache, Distributed systems, Databases, Golang">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,600|Montserrat:200,300,400" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bootstrap/bootstrap.css">
<link rel="stylesheet" href="assets/fonts/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="assets/fonts/law-icons/font/flaticon.css">
<link rel="stylesheet" href="assets/fonts/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/slick-theme.css">
<link rel="stylesheet" href="assets/css/helpers.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/landing-2.css">
</head>
<body data-spy="scroll" data-target="#pb-navbar" data-offset="200">
<nav class="navbar navbar-expand-lg navbar-dark pb_navbar pb_scrolled-light" id="pb-navbar">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="./assets/images/logo_blue.png" style="width: 72px; height: 72px; padding: 7px;" alt=""> GhostDB </a><span class="small no-margin">v1.0.1</span>
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#probootstrap-navbar" aria-controls="probootstrap-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="ion-navicon"></i></span>
</button>
<div class="collapse navbar-collapse" id="probootstrap-navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" target="_blank" href="https://www.github.com/ghostdb/ghostdb">GitHub <i class="fa fa-github" aria-hidden="true"></i></a></li>
<li class="nav-item"><a class="nav-link" href="#section-features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="#section-gs">Getting Started</a></li>
<li class="nav-item"><a class="nav-link" href="#section-faq">FAQ</a></li>
<li class="nav-item"><a class="nav-link" href="./docs/index.html">Documentation</a></li>
<li class="nav-item cta-btn ml-xl-2 ml-lg-2 ml-md-0 ml-sm-0 ml-0"><a class="nav-link" href="#" onclick="window.open('https://ghostdb.github.io/linux/ghostdb_installer.sh')" target="_blank"><span class="pb_rounded-4 px-4">Download for Linux</span></a></li>
</ul>
</div>
</div>
</nav>
<!-- END nav -->
<section class="pb_cover_v3 overflow-hidden cover-bg-indigo cover-bg-opacity text-left pb_gradient_v1 pb_slant-light" id="section-home">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-7">
<h2 class="heading mb-4">Ultra fast distributed caching</h2>
<div class="sub-heading">
<p class="mb-4">GhostDB is a distributed, in-memory, general purpose key-value caching datastore that delivers microsecond performace at any scale.</p>
</div>
</div>
<div class="col-md-1">
</div>
<div class="col-md-4 relative align-self-center">
<form action="https://ghostdb.github.io/linux/ghostdb_installer.sh" class="bg-white rounded pb_form_v1">
<h2 class="mb-4 mt-0 text-center">Get GhostDB for Linux</h2>
<p class="mb-4 mt-0 text-center small version">Latest v1.0.1</p>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-lg btn-block pb_btn-pill btn-shadow-blue" value="Download">
</div>
</form>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section bg-light pb_slant-white pb_pb-250" id="section-features">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-6 text-center mb-5">
<h5 class="text-uppercase pb_font-15 mb-2 pb_color-dark-opacity-3 pb_letter-spacing-2"><strong>Features</strong></h5>
<h2>GhostDB Features</h2>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-ios-bookmarks-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">General Purpose</h5>
<p class="text-sans-serif">GhostDB was designed to be generic in nature. For this reason, you are able to cache just about anything you want.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-ios-speedometer-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">Ultra Fast</h5>
<p class="text-sans-serif">GhostDB can provide you with up to a 25x increase in data retrieval speeds when compared to databases such as MongoDB and MySQL.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-ios-infinite-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">Live Modifiable Clusters</h5>
<p class="text-sans-serif">We know the world isn't static, and thats why you can modify your live cluster. GhostDB will adjust to your changes!</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-ios-color-filter-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">Persistence</h5>
<p class="text-sans-serif">GhostDB nodes take point-in-time snapshots and will rebuild themselves when they come back online. If this doesn't suit your needs, you can enable append-only-file persistence for up to the moment recovery.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-connection-bars pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">Metrics</h5>
<p class="text-sans-serif">Knowing whats happening with your cluster is important. You will have access to fine grain system level metrics and application level metrics!</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md- col-sm-6">
<div class="media d-block pb_feature-v1 text-left">
<div class="pb_icon"><i class="ion-ios-locked-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h5 class="mt-0 mb-3 heading">Encryption</h5>
<p class="text-sans-serif">We're aware that your cached data may be sensitive. For that reason, you can choose encrypt your snapshots with 128-bit AES.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section pb_slant-light" id="section-gs">
<div class="container">
<div class="row">
<div class="col-lg-4 mb-5">
<img src="./assets/images/clusterf.svg" style="width: 160%; height: 160%; margin-top: -200px; margin-left: -200px;">
</div>
<div class="col-lg-8 pl-md-5 pl-sm-0">
<div class="row">
<div class="col">
<h2>Getting Started</h2>
<p class="pb_font-20">With just a few simple steps, you can get up and running with GhostDB! For a more in-depth guide, read the <a href="https://ghostdb.github.io/docs/index.html">docs</a></p>
</div>
</div>
<div class="row">
<div class="col-lg">
<div class="media pb_feature-v2 text-left mb-1 mt-5">
<div class="pb_icon d-flex mr-3 align-self-start pb_w-15"><i class="ion-ios-download-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h3 class="mt-2 mb-2 heading">1. Download GhostDB</h3>
<p class="text-sans-serif pb_font-16">Download GhostDB for Linux from the download link at the top of this page and run it.</p>
</div>
</div>
<div class="media pb_feature-v2 text-left mb-1 mt-5">
<div class="pb_icon d-flex mr-3 align-self-start pb_w-15"><i class="ion-ios-paperplane-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h3 class="mt-2 mb-2 heading">3. Cache Data</h3>
<p class="text-sans-serif pb_font-16">Store data in your cluster with a single line of code. Follow the SDK specific guides.</p>
</div>
</div>
</div>
<div class="col-lg">
<div class="media pb_feature-v2 text-left mb-1 mt-5">
<div class="pb_icon d-flex mr-3 align-self-start pb_w-15"><i class="ion-ios-box-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h3 class="mt-2 mb-2 heading">2. Install the GhostDB SDK</h3>
<p class="text-sans-serif pb_font-16">Install one of the following: <br> <a href="https://pypi.org/project/ghostdb/">GhostDB SDK for Python</a> <br> <a href="https://www.npmjs.com/package/ghost-db-sdk">GhostDB SDK for Node.js</a></p>
</div>
</div>
<div class="media pb_feature-v2 text-left mb-1 mt-5">
<div class="pb_icon d-flex mr-3 align-self-start pb_w-15"><i class="ion-ios-undo-outline pb_icon-gradient"></i></div>
<div class="media-body">
<h3 class="mt-2 mb-2 heading">4. Retrieve Data</h3>
<p class="text-sans-serif pb_font-16">Fetch data from your cluster and gain a 25x increase in data retrieval speed with a single line of code. Follow the SDK specific guides.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END section -->
<section class="pb_section pb_slant-white" id="section-faq">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-6 text-center mb-5">
<h5 class="text-uppercase pb_font-15 mb-2 pb_color-dark-opacity-3 pb_letter-spacing-2"><strong>FAQ</strong></h5>
<h2>Frequently Asked Questions</h2>
</div>
</div>
<div class="row">
<div class="col-md">
<div id="pb_faq" class="pb_accordion" data-children=".item">
<div class="item">
<a data-toggle="collapse" data-parent="#pb_faq" href="#pb_faq1" aria-expanded="true" aria-controls="pb_faq1" class="pb_font-22 py-4">What is GhostDB?</a>
<div id="pb_faq1" class="collapse show" role="tabpanel">
<div class="py-3">
<p>GhostDB is a distributed, in-memory, general purpose key-value data store that delivers microsecond performance at any scale.</p>
<p>GhostDB is designed to speed up dynamic database or API driven websites by storing data in RAM in order to reduce the number of times these data sources must be read. GhostDB provides a very large hash table that is distributed across multiple machines and stores large numbers of key-value pairs within the hash table.</p>
</div>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#pb_faq" href="#pb_faq2" aria-expanded="false" aria-controls="pb_faq2" class="pb_font-22 py-4">What is in-memory caching?</a>
<div id="pb_faq2" class="collapse" role="tabpanel">
<div class="py-3">
<p>In computing, a cache is a high-speed data storage layer which stores a subset of data, so that future requests for that data are served faster than what is possible by accessing the data’s primary storage location. Caching allows you to efficiently reuse previously retrieved or computed data.</p>
<p>In-memory caching is a technique in which computer applications temporarily store data in a computer’s main memory (i.e., random access memory, or RAM) to enable fast retrievals of that data. The RAM that is used for the temporary storage is known as the cache. Since accessing RAM is significantly faster than accessing other media like hard disk drives or networks, caching helps applications run faster due to faster access to data.</p>
</div>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#pb_faq" href="#pb_faq3" aria-expanded="false" aria-controls="pb_faq3" class="pb_font-22 py-4">How do I get started with GhostDB?</a>
<div id="pb_faq3" class="collapse" role="tabpanel">
<div class="py-3">
<p>To get started with GhostDB, download a copy of it at the top of this page. Once downloaded, you can simply run the program. You can also configure your nodes to work how you like so follow our in-depth guide on the <a href="https://ghostdb.github.io/docs/index.html">docs</a> to get started with setting up a GhostDB cluster.</p>
</div>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#pb_faq" href="#pb_faq4" aria-expanded="false" aria-controls="pb_faq4" class="pb_font-22 py-4">How do I interact with GhostDB?</a>
<div id="pb_faq4" class="collapse" role="tabpanel">
<div class="py-3">
<p>You interact with your GhostDB cluster through our SDKs (Software development kits). We currently have two SDKs, <a href="https://pypi.org/project/ghostdb/">GhostDB SDK for Python</a> and <a href="https://www.npmjs.com/package/ghost-db-sdk">GhostDB SDK for Node.js</a>. Once you have installed our SDK you can follow our guide on the <a href="https://ghostdb.github.io/docs/index.html">docs</a> on how to integrate GhostDB into you applications.</p>
</div>
</div>
</div>
<div class="item">
<a data-toggle="collapse" data-parent="#pb_faq" href="#pb_faq5" aria-expanded="false" aria-controls="pb_faq5" class="pb_font-22 py-4">What can I use GhostDB for?</a>
<div id="pb_faq5" class="collapse" role="tabpanel">
<div class="py-3">
<p>GhostDB was designed to be generic in nature. For this reason GhostDB can be used for just about anything. Typically, GhostDB would be used to speed up data retrieval for applications that access APIs or databases. Below are a list of just some of GhostDBs use cases: </p>
<ul>
<li>In-memory data lookup</li>
<li>Relational and Non-relational database speedup</li>
<li>Managing spikes in web/mobile apps</li>
<li>Session-store</li>
<li>Token caching</li>
<li>Gaming - Player profiles & leaderboards</li>
<li>Web page caching</li>
<li>Global ID or counter generation</li>
<li>Fast access to any suitable data</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pb_xl_py_cover overflow-hidden pb_slant-light pb_gradient_v1 cover-bg-opacity-8" style="background-image: url(assets/images/1900x1200_img_5.jpg)" id="section-contact">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-6 justify-content-center">
<h2 class="heading mb-6 pb_font-40">Are you using GhostDB? Let us know what you think!</h2>
<div class="sub-heading">
<p class="mb-4">We want to get to know our users and how they feel about GhostDB. If you've been using GhostDB, let us know what you think!</p>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-4">
<form method="POST" action="https://formspree.io/mdowedwn" class="bg-white rounded pb_form_v1">
<h2 class="mb-4 mt-0 text-center">How has it been?</h2>
<div class="form-group">
<input type="text" class="form-control py-3 reverse" name="_replyto" placeholder="Email">
</div>
<div class="form-group">
<input type="text" class="form-control py-3 reverse" name="company" placeholder="Company (optional)">
</div>
<div class="form-group">
<textarea class="form-control" name="message" id="exampleFormControlTextarea1" placeholder="Your thoughts..."></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary btn-lg btn-block pb_btn-pill btn-shadow-blue" value="Tell us!">
</div>
</form>
</div>
</div>
</div>
</section>
<!-- END section -->
<footer class="pb_footer bg-light" role="contentinfo">
<div class="container">
<div class="row">
<div class="col text-center">
<p class="pb_font-14">© 2020 <a href="https://www.linkedin.com/in/jakegrogan" target="_blank">Jake Grogan</a> & <a href="https://www.linkedin.com/in/connor-mulready-77040815a" target="_blank">Connor Mulready</a>. All Rights Reserved. </p>
<p class="pb_font-10"> <a href="https://uicookies.com/bootstrap-html-templates/">Bootstrap Templates</a> by uiCookies <br>Demo Images: <a href="https://unsplash.com/" target="_blank" rel="nofollow">Unsplash</a></p>
</div>
</div>
</div>
</footer>
<!-- loader -->
<div id="pb_loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#1d82ff"/></svg></div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/jquery.mb.YTPlayer.min.js"></script>
<script src="assets/js/jquery.waypoints.min.js"></script>
<script src="assets/js/jquery.easing.1.3.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>