Multi Bot Architecture

Hi all,
I am confused about how to design multi bot project. Should design it using database or should i use Queue.
What are the advantages of using SQL data or Queue?

Thanks

1 Like

Hey @afsaneh_keivani

Of course it’s queue.

Queue has all the required user friendly functioning for you

Where as using SQL also accepted but you should be doing a lot of work for setup.

Thanks
#nK

Hi Nithinkrishna,
Thank you for your reply.

Would you please explain a little more ?

Thanks

1 Like

Hey @afsaneh_keivani

When you use queue, after fetching a new item the status goes into pending which makes the other bot pick next new item instead of working on the same item.

But in case of DB the above things is unavailable, you may need to perform the logic yourself which is an unnecessary overhead.

This is just one example, hope you got it.

There are many other points like this.

Thanks
#nK

Thank you very much I got it.

1 Like

Cool @afsaneh_keivani :+1::slightly_smiling_face:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.