-
Notifications
You must be signed in to change notification settings - Fork 429
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
perf(job-scheduler): add delayed job and scheduler in same script #2993
Conversation
tz: repeatOpts.tz, | ||
pattern, | ||
every, | ||
return this.trace<Job<T, R, N>>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copied for now, when update job scheduler get refactored, we will reuse same wrapper
## [5.34.7](v5.34.6...v5.34.7) (2025-01-06) ### Performance Improvements * **job-scheduler:** add delayed job and scheduler in same script ([#2993](#2993)) ([95718e8](95718e8))
@@ -0,0 +1,25 @@ | |||
--[[ | |||
Add marker if needed when a job is available. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment here seems to be wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in #2997
Why
Enter your explanation here.
Why is this change necessary? In order to handle addition of a job scheduler and delayed job in same script. Be able to execute in serverless redis as we don't need to use multi
How
Enter the implementation details here.
How did you implement this? Add a new include to handle delayed job additions
Additional Notes (Optional)
Any extra info here.