项目作者: ykayacan

项目描述 :
A basic Java implementation of Consistent Hashing, Rendezvous Hashing and Weighted Rendezvous Hashing.
高级语言: Java
项目地址: git://github.com/ykayacan/hashing-utils.git
创建时间: 2019-10-10T14:15:00Z
项目社区:https://github.com/ykayacan/hashing-utils

开源协议:Apache License 2.0

下载


Hashing Utils

Publish Release
Publish Snapshot
GitHub release (latest by date)
GitHub

Table of Contents

" class="reference-link">About

A basic Java implementation of Consistent Hashing,
Rendezvous Hashing and Weighted Rendezvous Hashing.

" class="reference-link">Getting Started

Latest Stable Releases

GitHub release (latest by date)

Gradle

  1. dependencies {
  2. implementation 'io.github.ykayacan.hashing:hashing-api:LATEST_VERSION'
  3. implementation 'io.github.ykayacan.hashing:hashing-consistent:LATEST_VERSION'
  4. implementation 'io.github.ykayacan.hashing:hashing-rendezvous:LATEST_VERSION'
  5. }

Maven

  1. <dependencies>
  2. <dependency>
  3. <groupId>io.github.ykayacan.hashing</groupId>
  4. <artifactId>hashing-api</artifactId>
  5. <version>LATEST_VERSION</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>io.github.ykayacan.hashing</groupId>
  9. <artifactId>hashing-consistent</artifactId>
  10. <version>LATEST_VERSION</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>io.github.ykayacan.hashing</groupId>
  14. <artifactId>hashing-rendezvous</artifactId>
  15. <version>LATEST_VERSION</version>
  16. </dependency>
  17. </dependencies>

Snapshots

You can access the latest snapshot by adding the repository https://oss.sonatype.org/content/repositories/snapshots
to your build.

Snapshots of the development version are available in Sonatype’s snapshots repository.

" class="reference-link">Usage

Consistent Hashing

  1. NodeRouter<PhysicalNode> router =
  2. ConsistentNodeRouter.create(15, MurMurHashFunction.create());
  3. List<PhysicalNode> initialNodes =
  4. Arrays.asList(PhysicalNode.of("node1"), PhysicalNode.of("node2"));
  5. router.addNodes(initialNodes);
  6. // get
  7. Optional<PhysicalNode> nodeOpt = router.getNode("node1");
  8. // add
  9. router.addNode(PhysicalNode.of("node3"));
  10. // remove
  11. router.removeNode("node1");

Rendezvous Hashing

  1. NodeRouter<WeightedNode> router = RendezvousNodeRouter.create(
  2. MurMurHashFunction.create(), DefaultRendezvousStrategy.create());
  3. List<WeightedNode> initialNodes =
  4. Arrays.asList(WeightedNode.of("node1"), WeightedNode.of("node2"));
  5. router.addNodes(initialNodes);
  6. // get
  7. Optional<WeightedNode> nodeOpt = router.getNode("node1");
  8. // add
  9. router.addNode(WeightedNode.of("node3"));
  10. // remove
  11. router.removeNode("node1");

License

  1. Copyright 2019 Yasin Sinan Kayacan
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License.