I am developing a multithreads app using Python3. I want to run over 100k threads at a time for backend server, but threads are created 10k in max. I think my server pc has enough resources for lots of threads.(cpu, ram). How can I increase the number of threads in Python3 multithreading?
for i in range(0, 1000000):
t = i.Thread(target=func, args=(i))
t_list.append(t)
for t in t_list:
t.start()