Most voted "pooling" questions
7 questions
Sort by count of
-
10
votes1
answer1943
viewsWhat is Database Connection Pool?
What does pool of connections mean when it comes to the Database? What does this concept imply in practice? What is its usefulness and importance in everyday life? Below is a definition I found in…
-
9
votes2
answers2252
viewsHow to check real-time database change with php websocket?
I want to update a div only when there is change in a certain field in the database, I’m currently using Polling, but I want to switch to websocket for performance reasons, but I only found examples…
-
1
votes0
answers81
viewsLoop with a pool.query pg(postgres) in the Ode, is giving conflict in the delivery of the Sponses
I’m a beginner in Node programming, I hope someone can help me, The problem is this, I am making an app with Node in which you have a for loop with the request body (req.body) and at each iteration…
-
0
votes0
answers230
viewsPool server connections for web application
would like to know if it is possible to implement a pool of connections on a server and have it distribute the connections to java desktop applications, if possible would like a direction of what to…
-
0
votes0
answers154
viewsWhat is the recommendation for the Mysql Connection Pool in Nodejs?
According to the documentation of mysql for Nodejs, it is possible to configure a connection pool to limit the number of connections in Mysql When running the following command on my Mysql server:…
-
0
votes1
answer115
viewsHikari timeout oracle springboot
Hi, I’m trying to manually set up a connection pool with Hikari. I will need to do manual because the application will have its dynamic settings for connection to the databases and schemas/Sid. How…
-
-1
votes1
answer362
viewsc3p0 generating many connections
Code that gets the connection InitialContext ctx = new InitialContext(); DataSource ds = (DataSource) ctx.lookup("java:/comp/env/jdbc/oracledb"); Connection connection = ds.getConnection();…