@@ -17,7 +17,7 @@ comprised of three parts:
17
17
3 . A Sinatra app for monitoring queues, jobs, and workers.
18
18
19
19
Resque workers can be distributed between multiple machines,
20
- support priorities, are resililent to memory bloat / "leaks," are
20
+ support priorities, are resilient to memory bloat / "leaks," are
21
21
optimized for REE (but work on MRI and JRuby), tell you what they're
22
22
doing, and expect failure.
23
23
@@ -151,12 +151,12 @@ do this:
151
151
This is why our above example (and all the examples in ` examples/ ` )
152
152
uses object IDs instead of passing around the objects.
153
153
154
- While this is less convenient than just sticking a marshalled object
154
+ While this is less convenient than just sticking a marshaled object
155
155
in the database, it gives you a slight advantage: your jobs will be
156
156
run against the most recent version of an object because they need to
157
157
pull from the DB or cache.
158
158
159
- If your jobs were run against marshalled objects, they could
159
+ If your jobs were run against marshaled objects, they could
160
160
potentially be operating on a stale record with out-of-date information.
161
161
162
162
@@ -184,7 +184,7 @@ exceptions you would not normally throw in order to assist debugging.
184
184
Workers
185
185
-------
186
186
187
- Resque workers are rake tasks the run forever. They basically do this:
187
+ Resque workers are rake tasks that run forever. They basically do this:
188
188
189
189
start
190
190
loop do
@@ -419,7 +419,7 @@ over the other?
419
419
* Resque can only place JSONable Ruby objects on a queue as arguments
420
420
* DelayedJob can place _ any_ Ruby object on its queue as arguments
421
421
* Resque includes a Sinatra app for monitoring what's going on
422
- * DelayedJob can be queryed from within your Rails app if you want to
422
+ * DelayedJob can be queried from within your Rails app if you want to
423
423
add an interface
424
424
425
425
If you're doing Rails development, you already have a database and
@@ -643,7 +643,7 @@ correctly (though we make an effort to tell you if we feel this is the
643
643
case). The tests attempt to start an isolated instance of Redis to
644
644
run against.
645
645
646
- Also make sure you've installed all the depenedencies correctly. For
646
+ Also make sure you've installed all the dependencies correctly. For
647
647
example, try loading the ` redis-namespace ` gem after you've installed
648
648
it:
649
649
@@ -665,10 +665,10 @@ Contributing
665
665
666
666
Once you've made your great commits:
667
667
668
- 1 . [ Fork] ( fk ) Resque
668
+ 1 . [ Fork] [ 1 ] Resque
669
669
2 . Create a topic branch - ` git checkout -b my_branch `
670
670
3 . Push to your branch - ` git push origin my_branch `
671
- 4 . Create an [ Issue] ( is ) with a link to your branch
671
+ 4 . Create an [ Issue] [ 2 ] with a link to your branch
672
672
5 . That's it!
673
673
674
674
@@ -700,5 +700,5 @@ Author
700
700
Chris Wanstrath ::
[email protected] ::
@defunkt
701
701
702
702
[ 0 ] : http://github.com/blog/542-introducing-resque
703
- [ fk ] : http://help.github.com/forking/
704
- [ is ] : http://github.com/defunkt/resque/issues
703
+ [ 1 ] : http://help.github.com/forking/
704
+ [ 2 ] : http://github.com/defunkt/resque/issues
0 commit comments