Skip to content

Commit 1d08510

Browse files
committed
fliparooski
1 parent 95f9e57 commit 1d08510

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

post.markdown

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Resque is our Redis-backed library for creating background jobs, placing
2+
those jobs on multiple queues, and processing them later.
3+
4+
Background jobs can be any Ruby class or module that responds to
5+
`perform`. Your existing classes can easily be converted to background
6+
jobs or you can create new classes specifically to do work. Or, you
7+
can do both.
8+
9+
All the details are in the [readme](resque). We've used it to process
10+
over 10m jobs since our move to Rackspace and are extremely happy with it.
11+
12+
But why another background library?
13+
14+
115
A Brief History of Background Jobs
216
----------------------------------
317

@@ -206,22 +220,7 @@ hard worker problems: visibility, reliability, and stats.
206220

207221
And that's [Resque](resque).
208222

209-
210-
Resque to the Rescue
211-
--------------------
212-
213-
Resque is a Redis-backed library for creating background jobs, placing
214-
those jobs on multiple queues, and processing them later.
215-
216-
Background jobs can be any Ruby class or module that responds to
217-
`perform`. Your existing classes can easily be converted to background
218-
jobs or you can create new classes specifically to do work. Or, you
219-
can do both.
220-
221-
All the details are in the [readme](resque). We've used it to process
222-
over 10m jobs since our move to Rackspace and are extremely happy with it.
223-
224-
We hope you enjoy it.
223+
We hope you enjoy it. We certainly do!
225224

226225
[redis]: http://github.com/antirez/redis
227226
[resque]: https://github.com/defunkt/resque#readme

0 commit comments

Comments
 (0)