<div class="gmail_quote">2009/7/8 Rach <span dir="ltr">&lt;<a href="mailto:rachie@oasiz.net">rachie@oasiz.net</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>Hello,</div><div><br></div><div>I am new to Python, but playing with an irc server (made with python of course) and am finding a problem with accepting more than 1000 users/connections.</div><div><br></div><div>I&#39;ve googled for a while and ended up here as it appears to be something to do with the &quot;thread stack limit&quot;. Does anyone know if that is correct and if stackless python will help?</div>
</blockquote><div><br>If your using a seperate thread per user/connection then I would suspect that you are right. Stackless should be able to help as you can have tens of thousands of tasklets on a normal PC.<br> </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div></div>
<div><br></div><div>If so, do you think the edits will be huge?</div><div><br></div><div>The only real threading bit is this: threading.Thread.__init__(self)</div><div><br></div><div>Thanks so much for any help you can give me.</div>
</blockquote><div><br>Erm.. without seeing your code it&#39;s hard to say for sure but you should just be able to switch the thread making bit with making a tasklet from the same bit of code.<br><br> <br></div></div><br>