Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jixuan1989/gossip-1

Gossip Cluster Framework
https://github.com/jixuan1989/gossip-1

Last synced: about 2 months ago
JSON representation

Gossip Cluster Framework

Awesome Lists containing this project

README

        

Gossip Cluster Framework
======

A Java implementation of a clustering framework based on gossip networks.

The setup is extremely simple:

Create a cluster with knowledge of at least on other member in the cluster and start the server.

GossipClusterMember otherMember = new GossipClusterMember("2", "otherhost", 8000, System.currentTimeMillis(),"");

GossipCluster cluster = new GossipCluster("1", "localhost", 8000, otherMember);

GossipServer server = new GossipServer(cluster);

server.start();