-
-
Notifications
You must be signed in to change notification settings - Fork 292
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
Re-design discord bot to handle many concurrent user requests #1000
Comments
@dipu-bd does the concurrent user requests affect the crawling speed? |
rather than crawling speed, it affects the server hardware usage. there is a limit of processing power and main memory. even if internet speed is very high, if we allow many requests running at the same time it will take over all processor and memory and cause system crash. |
can you add a feature to the bot where you can set the maximum number of concurrent requests if this feature is implemented? |
or limit the users of how many novels they can download in a day |
|
what is your replacement for discord.py? |
I am still reading through their docs. So far, I do not see any usable libraries in python with slash commands. I will wait around a few days in hope of new libraries to pop up. Otherwise, calling REST apis is the only way. |
This requires a complete re-write of existing discord bot. The planned architecture is suggested below.
The text was updated successfully, but these errors were encountered: