curb_threadpool 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -2
- data/VERSION +1 -1
- data/curb_threadpool.gemspec +1 -1
- data/lib/curb_threadpool.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -5,9 +5,8 @@ A multi-threaded worker pool for Curb.
|
|
5
5
|
## Usage
|
6
6
|
|
7
7
|
ct = Curl::ThreadPool.new
|
8
|
-
reqs = []
|
9
8
|
10000.times { |i| ct[i] = "http://localhost/test" }
|
10
|
-
responses = ct.
|
9
|
+
responses = ct.perform() # => contains keyed response hash
|
11
10
|
|
12
11
|
or
|
13
12
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.2
|
data/curb_threadpool.gemspec
CHANGED
data/lib/curb_threadpool.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: curb_threadpool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 2
|
10
|
+
version: 0.5.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chetan Sarva
|