queue_classic 2.1.3 → 2.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/readme.md +14 -4
- metadata +3 -3
data/readme.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# queue_classic
|
2
2
|
|
3
|
-
v2.1.
|
3
|
+
v2.1.4
|
4
4
|
|
5
5
|
queue_classic provides a simple interface to a PostgreSQL-backed message queue. queue_classic specializes in concurrent locking and minimizing database load while providing a simple, intuitive developer experience. queue_classic assumes that you are already using PostgreSQL in your production environment and that adding another dependency (e.g. redis, beanstalkd, 0mq) is undesirable.
|
6
6
|
|
@@ -14,7 +14,7 @@ Features:
|
|
14
14
|
|
15
15
|
Contents:
|
16
16
|
|
17
|
-
* [Documentation](http://rubydoc.info/gems/queue_classic/2.1.
|
17
|
+
* [Documentation](http://rubydoc.info/gems/queue_classic/2.1.4/frames)
|
18
18
|
* [Usage](#usage)
|
19
19
|
* [Setup](#setup)
|
20
20
|
* [Configuration](#configuration)
|
@@ -131,8 +131,8 @@ $ ruby -r queue_classic -e "QC::Worker.new.work"
|
|
131
131
|
Declare dependencies in Gemfile.
|
132
132
|
|
133
133
|
```ruby
|
134
|
-
source
|
135
|
-
gem "queue_classic", "2.1.
|
134
|
+
source "http://rubygems.org"
|
135
|
+
gem "queue_classic", "2.1.4"
|
136
136
|
```
|
137
137
|
|
138
138
|
Require these files in your Rakefile so that you can run `rake qc:work`.
|
@@ -181,6 +181,16 @@ $ bundle exec rake qc:drop
|
|
181
181
|
|
182
182
|
All configuration takes place in the form of environment vars. See [queue_classic.rb](https://github.com/ryandotsmith/queue_classic/blob/master/lib/queue_classic.rb#L23-62) for a list of options.
|
183
183
|
|
184
|
+
## Logging
|
185
|
+
|
186
|
+
By default queue_classic does not talk very much.
|
187
|
+
If you find yourself in a situation where you need to know what's happening inside QC,
|
188
|
+
you can enable the debug output by setting the `DEBUG` environment variable:
|
189
|
+
|
190
|
+
```
|
191
|
+
export DEBUG="true"
|
192
|
+
```
|
193
|
+
|
184
194
|
## Hacking on queue_classic
|
185
195
|
|
186
196
|
### Dependencies
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: queue_classic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: 0.15.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: multi_json
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|