Questions tagged as 'pooling'

1
answer

What is connection pooling in Database?

What does connection pool mean for Database? What does this concept imply in practice? What is its usefulness and importance in everyday life? Here is a definition I found in my search:    In software engineering, a connection pool is a conne...
asked by 10.01.2016 / 19:31
2
answers

How to check real-time change in database with php websocket?

I want to update a div only when there is a change in a certain field in the database, I am currently using polling, but I want to switch to websocket for performance issues, but I only find examples of chats, and it's not what I need. Does any...
asked by 29.03.2017 / 17:55
0
answers

Server connection pool for web application

I would like to know if it is possible to deploy a pool of connections on a server and have it deploy connections to java desktop applications, if possible I would like a targeting than to search to implement this using Java and MongoDB. Sce...
asked by 23.10.2017 / 19:21
1
answer

c3p0 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(); connection.setAut...
asked by 24.10.2017 / 14:31