Skip to content

Commit a58820e

Browse files
author
Chris Boulton
committed
Merge pull request chrisboulton#54 from maetl/master
removing a lie
2 parents e54c7ca + df8853e commit a58820e

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed
File renamed without changes.

README.markdown renamed to README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,41 @@ php-resque: PHP Resque Worker (and Enqueue) [![Build Status](https://secure.trav
44
Resque is a Redis-backed library for creating background jobs, placing
55
those jobs on multiple queues, and processing them later.
66

7-
Resque was pioneered and is developed by the fine folks at GitHub (yes,
8-
I am a kiss-ass), and written in Ruby.
7+
## Background ##
98

10-
What you're seeing here is an almost direct port of the Resque worker
11-
and enqueue system to PHP, which I've thrown together because I'm sure
12-
my PHP developers would have a fit if they had to write a line of Ruby.
9+
Resque was pioneered and is developed by the fine folks at GitHub (yes,
10+
I am a kiss-ass), and written in Ruby. What you're seeing here is an
11+
almost direct port of the Resque worker and enqueue system to PHP.
1312

1413
For more information on Resque, visit the official GitHub project:
1514
<http://github.com/defunkt/resque/>
1615

17-
And for background information, the launch post on the GitHub blog:
16+
For further information, see the launch post on the GitHub blog:
1817
<http://github.com/blog/542-introducing-resque>
1918

2019
The PHP port does NOT include its own web interface for viewing queue
2120
stats, as the data is stored in the exact same expected format as the
2221
Ruby version of Resque.
2322

24-
The PHP port allows for much the same as the Ruby version of Rescue:
23+
The PHP port provides much the same features as the Ruby version:
2524

2625
* Workers can be distributed between multiple machines
2726
* Includes support for priorities (queues)
2827
* Resilient to memory leaks (fork)
2928
* Expects failure
3029

31-
In addition, it also:
30+
It also supports the following additional features:
3231

3332
* Has the ability to track the status of jobs
3433
* Will mark a job as failed, if a forked child running a job does
3534
not exit with a status code as 0
3635
* Has built in support for `setUp` and `tearDown` methods, called
3736
pre and post jobs
3837

39-
Note: php-resque requires at least Redis 2.2.
38+
## Requirements ##
39+
40+
* PHP 5.2+
41+
* Redis 2.2+
4042

4143
## Jobs ##
4244

TODO.markdown renamed to TODO.md

File renamed without changes.

0 commit comments

Comments
 (0)