redis-asm 0.1.1 → 0.1.2
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 +4 -4
- data/README.md +26 -4
- data/bench/bench.rb +41 -0
- data/bench/words.txt +100001 -0
- data/lib/redis/asm/version.rb +1 -1
- data/redis-asm.gemspec +2 -2
- metadata +6 -4
data/lib/redis/asm/version.rb
CHANGED
data/redis-asm.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Redis::Asm::VERSION
|
9
9
|
spec.authors = ["Masato Yamaguchi"]
|
10
10
|
spec.email = ["karateka2000@gmail.com"]
|
11
|
-
spec.summary = "Fast fuzzy string search on Redis using Lua. UTF-8
|
12
|
-
spec.description = "Fast ASM(Approximate String Matching) by calucuating edit distance within the collecitons such as ZSET, HASH, LIST, SET on Redis using Lua script. It provides you to search multi-byte characters correctly, because it recognizes lead-byte of UTF-8 strings."
|
11
|
+
spec.summary = "Fast fuzzy string search on Redis using Lua. UTF-8 ready."
|
12
|
+
spec.description = "Fast ASM (Approximate String Matching) by calucuating edit distance within the collecitons such as ZSET, HASH, LIST, SET on Redis using Lua script. It provides you to search multi-byte characters correctly, because it recognizes lead-byte of UTF-8 strings."
|
13
13
|
spec.homepage = "http://github.com/krt/redis-asm"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis-asm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masato Yamaguchi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description: Fast ASM(Approximate String Matching) by calucuating edit distance within
|
83
|
+
description: Fast ASM (Approximate String Matching) by calucuating edit distance within
|
84
84
|
the collecitons such as ZSET, HASH, LIST, SET on Redis using Lua script. It provides
|
85
85
|
you to search multi-byte characters correctly, because it recognizes lead-byte of
|
86
86
|
UTF-8 strings.
|
@@ -97,6 +97,8 @@ files:
|
|
97
97
|
- LICENSE.txt
|
98
98
|
- README.md
|
99
99
|
- Rakefile
|
100
|
+
- bench/bench.rb
|
101
|
+
- bench/words.txt
|
100
102
|
- lib/redis-asm.rb
|
101
103
|
- lib/redis/asm.rb
|
102
104
|
- lib/redis/asm/version.rb
|
@@ -128,7 +130,7 @@ rubyforge_project:
|
|
128
130
|
rubygems_version: 2.2.2
|
129
131
|
signing_key:
|
130
132
|
specification_version: 4
|
131
|
-
summary: Fast fuzzy string search on Redis using Lua. UTF-8
|
133
|
+
summary: Fast fuzzy string search on Redis using Lua. UTF-8 ready.
|
132
134
|
test_files:
|
133
135
|
- spec/redis/asm/asm_spec.rb
|
134
136
|
- spec/redis/asm/test_data.txt
|