-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add redis pub/sub to project #6
base: main
Are you sure you want to change the base?
Conversation
This is not working yet, I think I need some pair programming with you , it's getting complicated for me to understand what should I do |
lib/redis/redis.ts
Outdated
await (async function () { | ||
for await (const {channel, message} of subscribe.receive()) { | ||
console.log({channel, message:message}) | ||
} | ||
})(); |
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.
Doesn't this do the job? Since the parent function is already defined as async.
await (async function () { | |
for await (const {channel, message} of subscribe.receive()) { | |
console.log({channel, message:message}) | |
} | |
})(); | |
for await (const {channel, message} of subscribe.receive()) { | |
console.log({channel, message:message}) | |
} |
lib/redis/redis.ts
Outdated
export const addTaskToRedis = async (task:Task)=>{ | ||
return publish(task.name, task) | ||
} |
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.
IMO, this module should not know anything about tasks. It should be concerned with saving and receiving data from Redis. We need another module/package to handle connecting to tasks. WDYT?
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.
You are right, I should separate the concerns
Sorry for commenting on a WIP PR. Just wanted to apply the changes in the meanwhile if you agree. Thanks @mohammadranjbarz . |
|
@jamiri |
No description provided.