consistent_hashing 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +15 -0
- data/README.txt +5 -0
- data/Rakefile +139 -0
- data/lib/consistent_hashing.rb +111 -0
- data/lib/consistent_hashing/jenkins_one_at_a_time.rb +25 -0
- data/lib/consistent_hashing/version.rb +9 -0
- data/lib/mem_cache_with_consistent_hashing.rb +67 -0
- data/setup.rb +1585 -0
- data/spec/consistent_hashing_spec.rb +143 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +40 -0
- data/test/benchmark.rb +32 -0
- data/test/test_mem_cache.rb +586 -0
- metadata +64 -0
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
|
+
name: consistent_hashing
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-06-15 00:00:00 -05:00
|
8
|
+
summary: An implementation of consistent hashing, and a subclass of MemCache (from the memcache-client gem) that uses it.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: jkit@codetry.org
|
12
|
+
homepage: http://codetry.rubyforge.org
|
13
|
+
rubyforge_project: codetry
|
14
|
+
description: An implementation of consistent hashing, and a subclass of MemCache (from the memcache-client gem) that uses it.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Jimmy Kittiyachavalit
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- License.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- lib/consistent_hashing.rb
|
38
|
+
- lib/consistent_hashing/jenkins_one_at_a_time.rb
|
39
|
+
- lib/consistent_hashing/version.rb
|
40
|
+
- lib/mem_cache_with_consistent_hashing.rb
|
41
|
+
- setup.rb
|
42
|
+
- spec/consistent_hashing_spec.rb
|
43
|
+
- spec/spec.opts
|
44
|
+
- spec/spec_helper.rb
|
45
|
+
- test/benchmark.rb
|
46
|
+
- test/test_mem_cache.rb
|
47
|
+
test_files:
|
48
|
+
- test/test_mem_cache.rb
|
49
|
+
rdoc_options:
|
50
|
+
- --main
|
51
|
+
- README.txt
|
52
|
+
extra_rdoc_files:
|
53
|
+
- History.txt
|
54
|
+
- License.txt
|
55
|
+
- Manifest.txt
|
56
|
+
- README.txt
|
57
|
+
executables: []
|
58
|
+
|
59
|
+
extensions: []
|
60
|
+
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
dependencies: []
|
64
|
+
|