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
|
<html>
<head>
<title>SwarmCache - Cluster-aware Caching for Java</title>
<link rel="stylesheet" href="styles.css" type="text/css">
<LINK REL="icon" HREF="favicon.gif" TYPE="image/gif">
<LINK REL="SHORTCUT ICON" HREF="favicon.ico">
</html>
<body>
<table width="100%" height="100%" cellpadding="0" cellspacing="0">
<tr>
<!-- Top Left Image -->
<td class="border" width="100" height="100"><img src="img/swarm.jpg" border="0"/></td>
<!-- Title Bar -->
<td class="border" height="100">
<table>
<tr><td height="10"></td></tr>
<tr><td class="title"> SwarmCache</td></tr>
<tr><td class="subtitle">Cluster-aware Caching for Java</td></tr>
</table>
</td>
</tr>
<tr>
<!-- Menu Bar -->
<td id="menu" class="border" width="100" valign="top">
<table width="100%" cellpadding="0" cellspacing="0">
<tr><td height="25"/></tr>
<tr><td class="menuitem"><a href="index.html">Home</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="http://sourceforge.net/project/showfiles.php?group_id=78637&release_id=193220">Download</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="tutorial.html">Tutorial</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="documentation.html">Documentation</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="api/index.html">Javadocs</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="http://sf.net/projects/swarmcache">Project Page</a></td></tr>
<tr><td height="4"/></tr>
<tr><td class="menuitem"><a href="http://sourceforge.net/forum/forum.php?forum_id=268479">Help Forums</a></td></tr>
</table>
</td>
<!-- Content Area -->
<td valign="top">
<table class="contentTable" height="100%" cellspacing="5">
<tr>
<td class="content">
<!-- --------------------------- CONTENT BEGIN --------------------------- -->
<span class="heading">Overview</span><br>
SwarmCache is a simple but effective distributed cache. It uses IP multicast to efficiently communicate with any number of hosts on a LAN. It is specifically designed for use by clustered, database-driven web applications. Such applications typically have many more read operations than write operations, which allows SwarmCache to deliver the greatest performance gains. SwarmCache uses <a href="http://www.javagroups.com">JavaGroups</a> internally to manage the membership and communications of its distributed cache.
<p>
<span class="heading">News</span><br>
<!-- NEWS ITEM -->
<table class="newstable">
<tr>
<td width="75%" class="newsheading">SwarmCache 1.0 RC2 Released</td>
<td width="25%" class="newsdate">10.25.2003</td>
</tr>
<tr>
<td class="newstext" colspan="2">
This release brings SwarmCache up to JGroups 2.2 compliance. It also solves a potential deadlock problem and provides a controlled shut-down mechanism.
</td>
</tr>
<tr><td height="8"></td></tr>
</table>
<!-- NEWS ITEM -->
<table class="newstable">
<tr>
<td width="75%" class="newsheading">SwarmCache Integrated with Hibernate</td>
<td width="25%" class="newsdate">10.22.2003</td>
</tr>
<tr>
<td class="newstext" colspan="2">
SwarmCache will be available as a pluggable cache module for the fantastic relational persistence engine <a href="http://www.hibernate.org">Hibernate</a>. SwarmCache will allow Hibernate to perform well in a clustered application environment. Release 2.1 Beta 5 of Hibernate will be the first to include support for SwarmCache.
</td>
</tr>
<tr><td height="8"></td></tr>
</table>
<!-- NEWS ITEM -->
<table class="newstable">
<tr>
<td width="75%" class="newsheading">SwarmCache 1.0 RC1 Released</td>
<td width="25%" class="newsdate">09.19.2003</td>
</tr>
<tr>
<td class="newstext" colspan="2">
This release cleans up the code base. There are very few functionality changes. The main addition is the HybridCache. This caching algorithm combines the benefits of the LRU and Automatic caching algorithms, making it the best choice for high-performance caching.
</td>
</tr>
<tr><td height="8"></td></tr>
</table>
<!-- NEWS ITEM -->
<table class="newstable">
<tr>
<td width="75%" class="newsheading">SwarmCache 0.91 Released</td>
<td width="25%" class="newsdate">04.16.2003</td>
</tr>
<tr>
<td class="newstext" colspan="2">
This release is a fully-functional beta. No bugs are known, but it has not seen a lot of time in production systems. However, the previous release (0.9) has been used for some time on heavily-loaded production systems.
</td>
</tr>
<tr><td height="8"></td></tr>
</table>
<!-- END OF NEWS -->
<!--
<table class="newstable">
<tr><td></td></tr>
</table>
-->
<!-- ---------------------------- CONTENT END ---------------------------- -->
</td>
</tr>
<tr>
<td class="copyright">©2003 <a href="http://tronics.org/watkinson">John Watkinson</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|