What is a common practice to reduce the load on a servlet?
- Caching
- Database Connection Pooling
- Lazy Loading
- Multithreading
Database Connection Pooling is a common practice to reduce the load on a servlet by efficiently managing and reusing database connections, improving performance.
Loading...
Related Quiz
- How does the sendRedirect() method communicate the new URL to the client's browser?
- How does a servlet container typically interact with a connection pool?
- An ORM framework's ability to automatically generate SQL queries from object-oriented code is known as _________.
- For security purposes, filters are often used to implement __________ and __________ controls.
- What is a common strategy for handling the situation when all connections in the pool are in use?