Q
quest
My webserver application (a http handler) accepts a sequence of requests
from client. Each request requires an access to database (password/username
supplied in the request). I am looking at improving the performance of the
webserver. My questions:
1. How should I handle the session as the client will post one request after
antoher (for may be consequtively 5 requests) ?
2. Is there any way to 'cache' the database connection and reuse it for
subsequent request from the same client ?
Thanks.
from client. Each request requires an access to database (password/username
supplied in the request). I am looking at improving the performance of the
webserver. My questions:
1. How should I handle the session as the client will post one request after
antoher (for may be consequtively 5 requests) ?
2. Is there any way to 'cache' the database connection and reuse it for
subsequent request from the same client ?
Thanks.