79432879

Date: 2025-02-12 11:29:40
Score: 2
Natty:
Report link

Your approach with multiprocessing is reasonable, but since your bot runs indefinitely, it might be better to use threading (if I/O-bound) or asyncio for better efficiency. If each instance should be fully isolated, consider running each bot as a separate process using subprocess or Docker to prevent one failure from affecting others. Also, check system resource usage (CPU/memory) as it might be causing slowdowns.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: adilhassan