snow_flake 0.1.1
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.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +21 -0
- data/README.md +53 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/snow_flake.rb +78 -0
- data/lib/snow_flake/version.rb +3 -0
- data/snow_flake.gemspec +37 -0
- metadata +104 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3b7d769052a18e3631038aa1ca7f7a35c84aaabd
|
|
4
|
+
data.tar.gz: 98a76a8b746b3945ffa00d9d3b65d5ac3aed0b06
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9c40b55767eab80a0145340044fe55e91156bf5470a48082dcb54a82f21faf49c06badb482915a50ff9325ccefc1231578533fa412dd846f09745ce04b2df763
|
|
7
|
+
data.tar.gz: dd9bb3fd2841c2393a0e91a1229e890174318568d1ed971ad5380a8b079dfa425f782b78c8d48fd8c770a334905c0049261ade3b9ebf3754d479e09d935987af
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at liuxiangping@ktjr.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
72
|
+
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
snow_flake (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://gems.ruby-china.com/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.4.2)
|
|
11
|
+
rspec (3.2.0)
|
|
12
|
+
rspec-core (~> 3.2.0)
|
|
13
|
+
rspec-expectations (~> 3.2.0)
|
|
14
|
+
rspec-mocks (~> 3.2.0)
|
|
15
|
+
rspec-core (3.2.3)
|
|
16
|
+
rspec-support (~> 3.2.0)
|
|
17
|
+
rspec-expectations (3.2.1)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.2.0)
|
|
20
|
+
rspec-mocks (3.2.1)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.2.0)
|
|
23
|
+
rspec-support (3.2.2)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
bundler (~> 1.16)
|
|
30
|
+
rake (~> 10.0)
|
|
31
|
+
rspec (~> 3.0)
|
|
32
|
+
snow_flake!
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
1.16.0
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Tony liu
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# SnowFlake
|
|
2
|
+
|
|
3
|
+
This is a gem can generate ID using SnowFlake. The advantage of SnowFlake is that it is sorted by time increment on the whole, and there is no ID collision
|
|
4
|
+
(distinguished by data center ID and machine ID) in the whole distributed system, and it is more efficient.
|
|
5
|
+
After testing, SnowFlake can generate about 260,000 IDs per second
|
|
6
|
+
|
|
7
|
+
雪花算法简单描述:
|
|
8
|
+
+ 最高位是符号位,始终为0,不可用。
|
|
9
|
+
+ 41位的时间序列,精确到毫秒级,41位的长度可以使用69年。时间位还有一个很重要的作用是可以根据时间进行排序。
|
|
10
|
+
+ 10位的机器标识,10位的长度最多支持部署1024个节点。
|
|
11
|
+
+ 12位的计数序列号,序列号即一系列的自增id,可以支持同一节点同一毫秒生成多个ID序号,12位的计数序列号支持每个节点每毫秒产生4096个ID序号。
|
|
12
|
+
|
|
13
|
+
看的出来,这个算法很简洁也很简单,但依旧是一个很好的ID生成策略。其中,10位器标识符一般是5位IDC+5位machine编号,唯一确定一台机器。
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
Add this line to your application's Gemfile:
|
|
17
|
+
|
|
18
|
+
```ruby
|
|
19
|
+
gem 'snow_flake'
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
And then execute:
|
|
23
|
+
|
|
24
|
+
$ bundle
|
|
25
|
+
|
|
26
|
+
Or install it yourself as:
|
|
27
|
+
|
|
28
|
+
$ gem install snow_flake
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
example
|
|
33
|
+
```ruby
|
|
34
|
+
SnowFlake::ID.new(0, 0).next_id
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Development
|
|
38
|
+
|
|
39
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
40
|
+
|
|
41
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
42
|
+
|
|
43
|
+
## Contributing
|
|
44
|
+
|
|
45
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/snow_flake. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
50
|
+
|
|
51
|
+
## Code of Conduct
|
|
52
|
+
|
|
53
|
+
Everyone interacting in the SnowFlake project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/snow_flake/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "snow_flake"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/snow_flake.rb
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
require "snow_flake/version"
|
|
2
|
+
# /**
|
|
3
|
+
# * Twitter_Snowflake<br>
|
|
4
|
+
# * SnowFlake的结构如下(每部分用-分开):<br>
|
|
5
|
+
# * 0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000 <br>
|
|
6
|
+
# * 1位标识,由于long基本类型在Java中是带符号的,最高位是符号位,正数是0,负数是1,所以id一般是正数,最高位是0<br>
|
|
7
|
+
# * 41位时间截(毫秒级),注意,41位时间截不是存储当前时间的时间截,而是存储时间截的差值(当前时间截 - 开始时间截)
|
|
8
|
+
# * 得到的值),这里的的开始时间截,一般是我们的id生成器开始使用的时间,由我们程序来指定的(如下下面程序IdWorker类的startTime属性)。41位的时间截,可以使用69年,年T = (1L << 41) / (1000L * 60 * 60 * 24 * 365) = 69<br>
|
|
9
|
+
# * 10位的数据机器位,可以部署在1024个节点,包括5位datacenterId和5位workerId<br>
|
|
10
|
+
# * 12位序列,毫秒内的计数,12位的计数顺序号支持每个节点每毫秒(同一机器,同一时间截)产生4096个ID序号<br>
|
|
11
|
+
# * 加起来刚好64位,为一个Long型。<br>
|
|
12
|
+
# * SnowFlake的优点是,整体上按照时间自增排序,并且整个分布式系统内不会产生ID碰撞(由数据中心ID和机器ID作区分),并且效率较高,经测试,SnowFlake每秒能够产生26万ID左右。
|
|
13
|
+
# */
|
|
14
|
+
module SnowFlake
|
|
15
|
+
# example
|
|
16
|
+
# SnowFlake::ID.new(1,1).next_id
|
|
17
|
+
class ID
|
|
18
|
+
attr_accessor :twepoch, :worker_id_bits, :datacenter_id_bits, :max_worker_id, :max_datacenter_id, :sequence_bits,
|
|
19
|
+
:worker_id_shift, :datacenter_id_shift, :timestamp_left_shift, :sequence_mask, :worker_id,
|
|
20
|
+
:datacenter_id, :sequence, :last_timestamp
|
|
21
|
+
|
|
22
|
+
# @param worker_id 工作ID (0~31)
|
|
23
|
+
# @param datacenter_id 数据中心ID (0~31)
|
|
24
|
+
def initialize(worker_id, datacenter_id)
|
|
25
|
+
self.twepoch = 1420041600000 # start time (2015-01-01)
|
|
26
|
+
self.worker_id_bits = 5 # worker id bits
|
|
27
|
+
self.datacenter_id_bits = 5 # datacenter id bits
|
|
28
|
+
# Supported maximum worker id, resulting in 31
|
|
29
|
+
self.max_worker_id = -1 ^ (-1 << worker_id_bits)
|
|
30
|
+
# Supported maximum datacenter id, resulting in 31
|
|
31
|
+
self.max_datacenter_id = -1 ^ (-1 << datacenter_id_bits)
|
|
32
|
+
self.sequence_bits = 12 # The number of sequences in ID
|
|
33
|
+
# The machine ID moves to the left 12 bits.
|
|
34
|
+
self.worker_id_shift = sequence_bits
|
|
35
|
+
# The data identification ID moves to the left 17 bits (12+5)
|
|
36
|
+
self.datacenter_id_shift = sequence_bits + worker_id_bits
|
|
37
|
+
# The time is shifted to the left by 22 bits(5+5+12)
|
|
38
|
+
self.timestamp_left_shift = sequence_bits + worker_id_bits + datacenter_id_bits
|
|
39
|
+
# The mask of generating sequence is 4095 (0b111111111111=0xfff=4095)
|
|
40
|
+
self.sequence_mask = -1 ^ (-1 << sequence_bits)
|
|
41
|
+
self.sequence = 0 # Millisecond sequence(0~4095)
|
|
42
|
+
self.last_timestamp = -1 # Last timestamp of ID generation
|
|
43
|
+
if worker_id > max_worker_id || worker_id < 0
|
|
44
|
+
raise "worker Id can't be greater than #{max_worker_id} or less than 0"
|
|
45
|
+
end
|
|
46
|
+
if datacenter_id > max_datacenter_id || datacenter_id < 0
|
|
47
|
+
raise "datacenter Id can't be greater than #{max_datacenter_id} or less than 0"
|
|
48
|
+
end
|
|
49
|
+
self.worker_id = worker_id # worker ID(0~31)
|
|
50
|
+
self.datacenter_id = datacenter_id # datacenter ID(0~31)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def next_id
|
|
54
|
+
timestamp = time_gen
|
|
55
|
+
if timestamp < last_timestamp
|
|
56
|
+
raise "Clock moved backwards. Refusing to generate id for #{last_timestamp - timestamp} milliseconds"
|
|
57
|
+
end
|
|
58
|
+
if last_timestamp == timestamp
|
|
59
|
+
self.sequence = (sequence + 1) & sequence_mask
|
|
60
|
+
timestamp = till_next_millis(last_timestamp) if sequence.zero?
|
|
61
|
+
else
|
|
62
|
+
self.sequence = 0
|
|
63
|
+
end
|
|
64
|
+
self.last_timestamp = timestamp
|
|
65
|
+
((timestamp - twepoch) << timestamp_left_shift) | (datacenter_id << datacenter_id_shift) | (worker_id << worker_id_shift) | sequence
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def till_next_millis(last_timestamp)
|
|
69
|
+
timestamp = time_gen
|
|
70
|
+
timestamp = time_gen while timestamp <= last_timestamp
|
|
71
|
+
timestamp
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def time_gen
|
|
75
|
+
(Time.now.to_f * 1000).floor
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
end
|
data/snow_flake.gemspec
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require "snow_flake/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "snow_flake"
|
|
7
|
+
spec.version = SnowFlake::VERSION
|
|
8
|
+
spec.authors = ["liuxiangping"]
|
|
9
|
+
spec.email = ["liuxiang511240@163.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = %q{snowflake generate ID}
|
|
12
|
+
spec.description = %q{This is a gem can generate ID using SnowFlake. The advantage of SnowFlake is that it is sorted by time increment on the whole, and there is no ID collision
|
|
13
|
+
(distinguished by data center ID and machine ID) in the whole distributed system, and it is more efficient.
|
|
14
|
+
After testing, SnowFlake can generate about 260,000 IDs per second}
|
|
15
|
+
spec.homepage = "https://rubygems.org/gems/snow_flake"
|
|
16
|
+
spec.license = "MIT"
|
|
17
|
+
|
|
18
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
19
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
20
|
+
if spec.respond_to?(:metadata)
|
|
21
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
22
|
+
else
|
|
23
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
24
|
+
"public gem pushes."
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
28
|
+
f.match(%r{^(test|spec|features)/})
|
|
29
|
+
end
|
|
30
|
+
spec.bindir = "exe"
|
|
31
|
+
spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f)}
|
|
32
|
+
spec.require_paths = ["lib"]
|
|
33
|
+
|
|
34
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
|
35
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
36
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
37
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: snow_flake
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- liuxiangping
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-09-18 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.16'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.16'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
description: |-
|
|
56
|
+
This is a gem can generate ID using SnowFlake. The advantage of SnowFlake is that it is sorted by time increment on the whole, and there is no ID collision
|
|
57
|
+
(distinguished by data center ID and machine ID) in the whole distributed system, and it is more efficient.
|
|
58
|
+
After testing, SnowFlake can generate about 260,000 IDs per second
|
|
59
|
+
email:
|
|
60
|
+
- liuxiang511240@163.com
|
|
61
|
+
executables: []
|
|
62
|
+
extensions: []
|
|
63
|
+
extra_rdoc_files: []
|
|
64
|
+
files:
|
|
65
|
+
- ".gitignore"
|
|
66
|
+
- ".rspec"
|
|
67
|
+
- ".travis.yml"
|
|
68
|
+
- CODE_OF_CONDUCT.md
|
|
69
|
+
- Gemfile
|
|
70
|
+
- Gemfile.lock
|
|
71
|
+
- LICENSE.txt
|
|
72
|
+
- README.md
|
|
73
|
+
- Rakefile
|
|
74
|
+
- bin/console
|
|
75
|
+
- bin/setup
|
|
76
|
+
- lib/snow_flake.rb
|
|
77
|
+
- lib/snow_flake/version.rb
|
|
78
|
+
- snow_flake.gemspec
|
|
79
|
+
homepage: https://rubygems.org/gems/snow_flake
|
|
80
|
+
licenses:
|
|
81
|
+
- MIT
|
|
82
|
+
metadata:
|
|
83
|
+
allowed_push_host: https://rubygems.org
|
|
84
|
+
post_install_message:
|
|
85
|
+
rdoc_options: []
|
|
86
|
+
require_paths:
|
|
87
|
+
- lib
|
|
88
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - ">="
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
requirements: []
|
|
99
|
+
rubyforge_project:
|
|
100
|
+
rubygems_version: 2.6.14
|
|
101
|
+
signing_key:
|
|
102
|
+
specification_version: 4
|
|
103
|
+
summary: snowflake generate ID
|
|
104
|
+
test_files: []
|