Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jixuan1989/gossip-1
- Owner: jixuan1989
- Fork: true (geertvos/gossip)
- Created: 2015-06-06T04:00:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2013-07-06T09:28:30.000Z (over 11 years ago)
- Last Synced: 2023-04-06T18:24:22.487Z (over 1 year ago)
- Language: Java
- Size: 316 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();