----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Bill Ataras wrote:
> I'd like to be able to hold 10,000 (yes 10k) simultaneous long lived TCP
> connections to a jserv server. Running Linux on high end PC (hopefully not
> higher than maxi intel box with lots of memory).
>
> That's the goal anyway. Could throw more/bigger hardware at it, but would
> like to hear at least positive noises that I have a chance of this kind of
> scale on a basic 2500$ PC.
My gut feeling is: no way. rethink your design.
Linux has a limit of 500 processes so you canīt go with native threads.
If you start 10k green threads the scheduling will go nuts.
Why dont you use Sessions?
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]