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

specify TTL on removeOnComplete #963

Open
colthreepv opened this issue Oct 17, 2016 · 2 comments
Open

specify TTL on removeOnComplete #963

colthreepv opened this issue Oct 17, 2016 · 2 comments

Comments

@colthreepv
Copy link

To keep track of successful jobs (their payloads), it could be useful to keep the job alive for a predetermined time.

This can be accomplished very easily specifying a TTL in the REDIS hash containing job informations.

The API could be:

queue.create( ... ).removeOnComplete( 3600 * 24 ).save()

In such way the job informations would be available for 24 hours prior to automatic removal by REDIS
Do you think it's a valid use-case?

@idris
Copy link

idris commented Nov 22, 2016

I tried to take a shot at this PR, but it's more complicated than I expected because job.remove removes it from a bunch of indexes and lists, so it's not as simple as just calling EXPIRE on the job's key.

😢

@allenluce
Copy link

I kept the API but overloaded it onto the existing job TTL mechanism.

allenluce pushed a commit to allenluce/kue that referenced this issue Feb 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants