Code Design - Connection Pool

Card Puncher Data Processing

About

Connection pools allow multiple concurrent requests (queries,…) to share a single connection, reducing the connection overhead because a connection takes time (a session must be created, memory allocated, …).

The most known connection pool are database connection pool.

Java Library

Database





Discover More
Card Puncher Data Processing
Code Design - function-as-a-service (faas) - Serverless function

function-as-a-service (faas) is a cloud offer where you can run a function without server. serverless function are functions that are deployed in a serverless framework. They are the lowest level of...
Card Puncher Data Processing
Code design - (Connection|Session)

During the use of a product, a session or connection is a execution context that holds identification data (if any) and group actions (such as interaction or transaction) that take place within...
Venn Diagram
Collection - Set

A set is: a data structure of the set theory a collection ofdistinct objects (then without duplicate) an unordered collection of objects The objects element of the set have the same type (the type...
Card Puncher Data Processing
Design pattern - The Singleton

The singleton pattern is a design pattern used to implement the mathematical concept of a singleton, by restricting the instantiation of a class to one object. This is useful when exactly one object is...
Jdbc Class Architecture
JDBC - Connection

in Jdbc Implementation: The javax/sql/DataSourceDataSource interface, introduced in JDBC 2.0 Optional Package, is connection factory. Data source provides connection...
J2ee Server
Java - Container

A container is a logical part of a J2EE Server which contains java components Before any component can be executed, it must be assembled. The assembly process involves per logical container: the...
Jndi Name Data Source Netbeans
Java - Java Naming and Directory Interface (JNDI)

JNDI is an interface describing naming and directory functionalities. It provides applications with methods for performing standard directory operations, such as: associating attributes with objects...
Obiee Connection Pool
OBIEE - Connection Pool

This articles regroups all the articles and talk the connection pool features of the BI Server such as: the connection script tab ... see below 10G 11G To automate connection pool changes...
Card Puncher Data Processing
Oracle - SQL_TRACE

Set a trace identifier: The trace file identifier is added to the name of the trace files. Set Trace on: Perform SQL Actions Set off Where are the trace files? To find the trace file on...
Oracle Database Connection Pooling
Oracle Database - Connection Pool

When a large number of clients run interactive Web applications, many of these sessions may be idle at a given time. The connection pooling feature enables the database server to timeout an idle session...



Share this page:
Follow us:
Task Runner