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

Add redis pub/sub to project #6

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

mohammadranjbarz
Copy link
Member

No description provided.

@mohammadranjbarz
Copy link
Member Author

@jamiri

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

Comment on lines 16 to 20
await (async function () {
for await (const {channel, message} of subscribe.receive()) {
console.log({channel, message:message})
}
})();
Copy link
Member

@jamiri jamiri Dec 25, 2020

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.

Suggested change
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})
}

Comment on lines 28 to 30
export const addTaskToRedis = async (task:Task)=>{
return publish(task.name, task)
}
Copy link
Member

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?

Copy link
Member Author

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

@jamiri
Copy link
Member

jamiri commented Dec 25, 2020

Sorry for commenting on a WIP PR. Just wanted to apply the changes in the meanwhile if you agree. Thanks @mohammadranjbarz .

@mohammadranjbarz
Copy link
Member Author

Sorry for commenting on a WIP PR. Just wanted to apply the changes in the meanwhile if you agree. Thanks @mohammadranjbarz
I actually create this pull request for hearing your comments, feel free

@mohammadranjbarz mohammadranjbarz marked this pull request as ready for review December 28, 2020 20:04
@mohammadranjbarz
Copy link
Member Author

@jamiri
I didnt know how I write tests for pub/sub but I created PR to can continue the tasks about redis list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants