-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.php
41 lines (39 loc) · 3.32 KB
/
index.php
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
<?php $currentPage="Samples" ?>
$template{name="sample-readme-html-header" title="JPPF Samples Pack"}$
<p>The samples pack is a set of small, self-contained applications that demonstrate the use of JPPF for real-life problems.
<p>Each application can be built and run independantly.
<p>The current applications in the samples pack are:
<ul class="samplesList">
<li><a href="Fractals">Generation of fractal images (Mandelbrot Set)</a></li>
<li><a href="SequenceAlignment">Protein and DNA sequence alignment</a></li>
<li><a href="WebSearchEngine">Distributed web crawler and search engine</a></li>
<li><a href="TomcatPort">Tomcat 5.5/6.0 port</a></li>
<li><a href="CustomMBeans">Pluggable management beans</a></li>
<li><a href="DataEncryption">Network data encryption</a></li>
<li><a href="StartupClasses">Customized server and node initialization</a></li>
<li><a href="MatrixMultiplication">Basic dense matrix multiplication parallelization</a></li>
<li><a href="DataDependency">Simulation of large portfolio updates</a></li>
<li><a href="NodeTray">JPPF node health monitor in the system tray</a></li>
<li><a href="CustomLoadBalancer">An example of a sophisticated load-balancer implementation</a></li>
<li><a href="NodeLifeCycle">Control of database transactions via node life cycle events</a></li>
<li><a href="Nbody">Parallel N-body problem applied to anti-protons trapped in a magnetic field</a></li>
<li><a href="FTPServer">How to embed and use an FTP server in JPPF</a></li>
<li><a href="NodeConnectionEvents">How to receive notifications of nodes connecting and disconnecting on the server</a></li>
<li><a href="JobRecovery">Job recovery after an application crash</a></li>
<li><a href="InitializationHook">Using a node initialization hook to implement a sophisticated failover mechanism</a></li>
<li><a href="ExtendedClassLoading">On-demand management and deployment of appplication libraries in the Grid</a></li>
<li><a href="GPU">Harnessing the power of the GPU with APARAPI</a></li>
<li><a href="KryoSerializer">A JPPF serialization scheme using Kryo</a></li>
<li><a href="ForkJoinNodeExecutor">A Fibonacci computation demo using fork/join thread pools in the nodes</a></li>
<li><a href="WordCount">A word count demo on the Wikipedia database</a></li>
<li><a href="FractalMovieGenerator">Generating AVI movies</a> from images produced by the <a href="Fractals">Mandelbrot fractals sample</a></li>
<li><a href="AdaptiveGrid">Dynamically adapting the grid topology based on the current workload</a></li>
<li><a href="ConcurrentJobs">A demonstration of the patterns for submitting multiple jobs in parallel</a></li>
<li><a href="PluggableView">A demonstration of a custom view integrated in the JPPF administration console</a></li>
<li><a href="JobDependencies">How to manage dependencies between jobs</a></li>
<li><a href="NetworkInterceptor">Using network interceptors to implement a simple auhentication protocol</a></li>
<li><a href="ConfigurationProperties">Using the configurtion API to generate the documentation of all predefined JPPF properties</a></li>
<li><a href="EmbeddedGrid">Start a full JPPF grid programmatically in a single JVM</a></li>
<li><a href="GridFailover">Manage a grid without single point of failure</a></li>
</ul>
$template{name="sample-readme-html-footer"}$