Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README URLs based on HTTP redirects #761

Merged
merged 1 commit into from
Nov 23, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Readme.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ queue.process('email', function(job, ctx, done){

### Updating Progress

For a "real" example, let's say we need to compile a PDF from numerous slides with [node-canvas](http:/learnboost/node-canvas). Our job may consist of the following data, note that in general you should _not_ store large data in the job it-self, it's better to store references like ids, pulling them in while processing.
For a "real" example, let's say we need to compile a PDF from numerous slides with [node-canvas](https:/Automattic/node-canvas). Our job may consist of the following data, note that in general you should _not_ store large data in the job it-self, it's better to store references like ids, pulling them in while processing.

```js
queue.create('slideshow pdf', {
Expand Down Expand Up @@ -411,7 +411,7 @@ This can be achieved in two ways:
});
```

This is the softest and best solution, however is not built-in with Kue. Please refer to [this discussion](https:/kriskowal/q/issues/120). You can comment on this feature in the related open Kue [issue](https:/LearnBoost/kue/pull/403).
This is the softest and best solution, however is not built-in with Kue. Please refer to [this discussion](https:/kriskowal/q/issues/120). You can comment on this feature in the related open Kue [issue](https:/Automattic/kue/pull/403).

You can also use promises to do something like

Expand Down Expand Up @@ -449,7 +449,7 @@ queue.watchStuckJobs(interval)

`interval` is in milliseconds and defaults to 1000ms

Kue will be refactored to fully atomic job state management from version 1.0 and this will happen by lua scripts and/or BRPOPLPUSH combination. You can read more [here](https:/LearnBoost/kue/issues/130) and [here](https:/LearnBoost/kue/issues/38).
Kue will be refactored to fully atomic job state management from version 1.0 and this will happen by lua scripts and/or BRPOPLPUSH combination. You can read more [here](https:/Automattic/kue/issues/130) and [here](https:/Automattic/kue/issues/38).

## Queue Maintenance

Expand Down Expand Up @@ -639,7 +639,7 @@ var queue = kue.createQueue({

## User-Interface

The UI is a small [Express](http:/visionmedia/express) application.
The UI is a small [Express](https:/strongloop/express) application.
A script is provided in `bin/` for running the interface as a standalone application
with default settings. You may pass in options for the port and redis-url. For example:

Expand Down Expand Up @@ -693,7 +693,7 @@ queue.create('email', {
}).searchKeys( ['to', 'title'] ).save();
```

Search feature is turned off by default from Kue `>=0.9.0`. Read more about this [here](https:/LearnBoost/kue/issues/412). You should enable search indexes in you need to:
Search feature is turned off by default from Kue `>=0.9.0`. Read more about this [here](https:/Automattic/kue/issues/412). You should enable search indexes in you need to:

```javascript
var kue = require('kue');
Expand Down Expand Up @@ -894,7 +894,7 @@ it('does something cool', function() {
## Screencasts

- [Introduction](http://www.screenr.com/oyNs) to Kue
- API [walkthrough](http://vimeo.com/26963384) to Kue
- API [walkthrough](https://vimeo.com/26963384) to Kue

## License

Expand Down