A servlet is just a Java class and can be used statefully or stateless.
(Stateless has been proven to be more scalable, of course.) So, your
concern should be with how much data you are storing in the user's session
(I hope you're not storing data in instance vars), rather than how many
servlets you have.
Scott
-----Original Message-----
From: Kirkdorffer, Daniel [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 12, 1999 3:58 PM
To: [EMAIL PROTECTED]
Subject: Re: Memory concerns
Interesting question.
I suspect the question comes down to how much memory does a servlet take up.
The servlet is always "running" once it has been initialized, but what are
the memory requirements and does server side garbage collection work its
magic? Our systems use the model 2 approach and tend to use multiple
servlets because we create servlets for specific tasks or specific screens.
We've never had a concern so far, but I'm interested in what the JSP
community thinks.
Dan
--
Daniel Kirkdorffer
Sr. Consultant, Syllogistics LLC
Web: http://www.syllogistics.com/
Email: [EMAIL PROTECTED]
> ----------
> From: Christopher Cobb[SMTP:[EMAIL PROTECTED]]
> Reply To: [EMAIL PROTECTED]
> Sent: Monday, April 12, 1999 1:08 PM
> To: [EMAIL PROTECTED]
> Subject: Memory concerns
>
> <<File: ccobb.vcf>>
> I am starting development on a web site that may have a dozen or so web
> pages. Since I want these to be login-protected (and I have pretty much
> concluded that I will have to use an SSI-based approach which requires
> that all pages be jsp's) I'm going to have a whole bunch of servlets
> hanging around.
>
> (My last applet-based project got away with a single servlet to service
> all of the applets needs.)
>
> Is anyone else concerned that having so many servlets hanging around in
> memory is going to place undo memory burdens on the web server?
>
> Chris
>
>
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".