Answer Posted / chandra kunchala
CGI:- COMMON GATEWAY INTERFACE.
CGI programs ate process based.
when ever we are sending a reqeust a separate process will
create. for each and every request it will create separete
process. so with respect to memory point of view we 've
loss lot of memory. but in the case of servlets, servlets
are thread based, and it will create onle request and
response objects only, so at the momory point of view this
will not effect.
The major advantage of CGI over servlets is, there is no
data-in-constitency problem as because for each and every
requet it will create process in separate memory so, all
process are independent to each other. But in the case of
servlets thrads are creating in the shared memory, so, there
may be chance of getting data-in-consistency problem..
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do you find out what client machine is making a request to your servlet
How are filters?
Write a simple servlet program to print the contents of html.
What must be implemented by all servlets?
What are different ways for authentication of servlet?
What is java servlet session?
Explain request dispatcher and its methods.
How do you invoke a servelt?
What is the use of servlet context?
What is a servlet?
What do you mean by url pattern in servlet?
What is the directory structure of a war file?
Explain url encoding?
Explain web container.
Can filter be used as request or response?