The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

Get tomcat hibernate apps and non hibernate apps to share 3CP0 connections

On Tomcat with have a jndi connection to a postgresql database using 3CP0 as a connection pool. I have two different apps that have parts written using jdbc and parts written using Hibernate. When I ...
4
votes
1answer
38 views
+100

CloudBees and App Cells, Instances and Pools

I am trying to understand the difference between: An app-cell An app instance; and An app pool For instance, how do I know when it is appropriate to add more app-cells for my app? Or to add more ...
0
votes
0answers
32 views

Glassfish connection pooling vs DB Oracle processes

We run GlassFish Server Open Source Edition 3.1 (build 43) and Oracle 11g Standard Edition. Our DB server has a maximum limit of 900 processes for connections. On a couple of occasions where we have ...
0
votes
0answers
83 views

.NET SQL Server Connection pooling issues after increasing amount of virtual CPUs [closed]

We have a web app, .net 4, IIS7, Windows Server 2008R2, Hyper-V, SQL Server 2012. The sql connection pooling has been working without issues until we increase the amount of virtual CPUs to 2. With a ...
0
votes
1answer
139 views

c3p0 pooling is not working (with hibernate and a datasource, on tomcat)

We have a java web application running on tomcat 6, which is calling a jar for persistance. This jar is located in the tomcat lib folder, and uses a tomcat datasource : <Resource ...
1
vote
0answers
98 views

Mysql connections in TIME_WAIT state

I am facing an issue in server wherein couple of connections are being timed out. Below are the errors in the err file:- 130401 8:07:06 [Warning] Aborted connection 1111111to db: 'ABC' user: 'u1' ...
0
votes
0answers
27 views

Identifying which connection being used in Universal Connection Pooling

I am using Oracle Universal Connection Pooling mechanism to keep a set of ready connections. I would like to know if there is a way to catch hold of the connection id (if any) so as to distinguish ...
3
votes
2answers
147 views

How to pool objects in Spring?

I'm following this tutorial regarding how to pool objects in Spring. I've followed the instruction written on the tutorial but when I run my application, it always generates a new instance of the ...
0
votes
1answer
97 views

Getting a snapshot of incoming / outgoing bandwidth speed on an interface in linux? [duplicate]

We were wondering how one would go about getting a quick 3 second snapshot of how fast bandwidth is being consumed on a specific interface in linux? We have some web services we would like to ...
-5
votes
1answer
81 views

buffer pool (asynchronous) [closed]

http://ahuwanya.net/blog/post/Buffer-Pooling-for-NET-Socket-Operations.aspx the site description for buffer pool(Asysnchrouns) now,how can do that? i have this code on parameter IAsyncResult i means ...
0
votes
0answers
22 views

Virtual Machine Pooling

I was researching on how to do Virtual Machine pooling for a set of running Unix machines. I came across this link below and this is exactly that I want. ...
0
votes
0answers
55 views

Best Practice for pooling on WCF Json Service

I have a long service method take could took about 15 min to finished, and I want to inform user about the status and percentage of completed part. So I how to implement both client side and server.. ...
0
votes
2answers
183 views

How to shutdown a GenericKeyedObjectPool safely?

I have a GenericKeyedObjectPool in my application. I can close it with the close method but how should I wait for the clients to return (and the pool destroys) every borrowed object to the pool? I ...
0
votes
1answer
290 views

How to make resource pooling in Java? [closed]

I have to maintain an app that create often resources and use them a very short time. So, most of the (precious user) time is spent in creating resources rather than actually using them. I'd like to ...
2
votes
1answer
388 views

Is there a way to reuse a NHibernate SessionFactory for multiple databases?

Like the title says, is there a way to "reuse" a SessionFactory for multiple databases? Since instantiating the SessionFactory takes time, I wonder if it would be possible to pool these instances and ...
2
votes
1answer
241 views

Disable SSL socket connection pooling in JAX-WS?

I was wondering if it was possible to disable socket connection pooling in JAX-WS? I am making calls to a webservice from within Jetty. The webservice is designed to have at most two connections to ...
3
votes
1answer
3k views

org.apache.tomcat.jdbc.pool.DataSource is no longer in the tomcat 7 dbcp jar?

I am trying to create a spring-managed standalone pool for tomcat-dbcp using the version 7.0.30 of tomcat-dbcp.jar However it seems the org.apache.tomcat.jdbc.DataSource class that is referred to in ...
0
votes
1answer
250 views

Scan hundreds of website using HttpWebRequest or similar

I have VB code with HttpWebRequest that collects html of hundreds of websites but takes very long time to complete the task. Code basically is a for-to-loop and reads html of the each website in the ...
0
votes
0answers
28 views

Get Updates from DB in MVC 3 Azure Application like Facebook : Best Practice

i want to get the Updates from DB if any Activity is performed like i have payments and they can be Approved , rejected, etc so i am calling a Method to get the updates from the DB if Any Alert is ...
1
vote
4answers
313 views

Pool of Objects - Synchronize - Delphi

I am implementing a pool of objects in Delphi. I need to synchronize the threads to get the objects from the pool. Thread Code: uClientQueryPool.CLIENT_POOL_GUARD.Acquire(); QueryClient := ...
1
vote
0answers
74 views

Resources for implementing object pooling in prototypical not classical JavaScript

quick question (with slightly laborious build up).... Both Douglas Crockford and Stoyan Stefanov in their JavaScript books strongly encourage staying clear of Classical (class based) paradigms when ...
3
votes
2answers
381 views

Thread Pool vs Many Individual Threads

I'm in the middle of a problem where I am unable decide which solution to take. The problem is a bit unique. Lets put it this way, i am receiving data from the network continuously (2 to 4 times per ...
2
votes
1answer
625 views

Polling vs long-polling [closed]

What are the differences between polling and long polling? What are the advantages and disadvantages? Is Ajax considered as long-polling?
0
votes
0answers
168 views

Why does JNotify consume so much resources?

I am using JNotify in order to observe modifications in a specific file. It runs in a separate thread pooling the directory with just one file. When I begin editing this file this thread starts ...
0
votes
1answer
89 views

WebLogic notification for c# (SNMP)

I'm on a small c# project that must include Weblogic status in real time! I've seen that Weblogic could use SNMP for diagnostics... unfortunately I’ve never used SNMP. So with that protocol is it ...
1
vote
2answers
641 views

Commons Pooling: How to instantiate a concrete pool?

I've added commons-pooling-1.6.jar to my classpath and trying to instantiate a StackObjectPool and am failing at every turn: // Deprecated. ObjectPool<T> oPool = new StackObjectPool<T>(); ...
2
votes
1answer
70 views

Is pooling of StreamWriter.WriteLine Disk I/Os happening?

I'm trying to find if the .net framework pools StreamWriter.WriteLine()s before writing them, or if it does it as they come and I can't find an answer on MSDN. For example, if I have this simplistic ...
0
votes
1answer
241 views

How to implement infinite loop

implementing IRC client (still). i have almost everyting but today i noticed, that there is one major problem. i get all the data which server is sending to me, but if I do nothing but wait after ...
0
votes
1answer
147 views

Placing a method in a timer to slow it down for Emotiv Epoc

I'm new to c#. The problem: I'd like to run a method within a timer, but the method returns/needs arguments not in the timers set of arguments. The reason: The method is called regularly (EPOC ...
1
vote
1answer
149 views

Is this unsynchronized object pool implementation good/safe?

Can this object pool cause visibility problems with multiple threads? I'm specifically wondering about this kind of execution sequence: Thread A - obtainObject() Thread A - modifies object (lets say ...
3
votes
1answer
399 views

Communication between Python and WCF

I have multiples servers (200-300) in Python 2.4 calling a WCF service using REST. I would like to be able to notify those servers of some changes that occured on the WCF service instead of asking all ...
0
votes
5answers
707 views

Best OS portable thread pool library [closed]

I'm developing a program in C++ for both POSIX-compatible systems and Windows(R) and was wondering: What is the best OS portable thread pool library? Or should I make my own? Is there any point of ...
3
votes
1answer
405 views

HTTP streaming on Heroku (upload lots of data)

I have one app hosted on Heroku and this app saving lots of data information to database (it takes about 70 seconds). Heroku after 30 seconds period of every request display the error page H12 about ...
1
vote
0answers
54 views

Apache2 connection pooling

I want to implement apache connection pooling between two apache2 servers. So that there are connections already established and my response time is reduced. I am aware that we need to use either ...
1
vote
2answers
447 views

File pool (like Connection Pool)

My English is like 3years old baby. Recently, I made a website with Many File Access. Unfortunately, My tomcat gave me this following error message Fatal: Socket accept failed ...
2
votes
2answers
202 views

Maintain Outbound TCP Connection Pool in ColdFusion

I'm looking to make heavy consumption of a RESTful API from a ColdFusion application. I'm not a CF expert but I'm anticipating the repeated cfhttp calls will become a bottleneck as I believe that ...
1
vote
2answers
2k views

How to implement push notification in Android

i am developing app that would receive data from server any time. i have searched some mechanism to do this C2DM: but i require Google account for each device on which app will be installed MQTT: ...
0
votes
2answers
476 views

I want to use Connection Pooling but my java application is not a servlet

Part of my project is to enhance the thread-safety part of my application. I want to be able to store and retrieve data from a mysql database through JDBC Connector/J and I know that I need to use ...
0
votes
0answers
108 views

How long is PreparedStatement stored in cache?

I'm using mySQL/Linux/Apache Tomcat/JSP/Servlet. I want to know how long a PreparedStatement is stored in cache? Does it still exist if I close the connection?
0
votes
2answers
229 views

What is good way of implementing an object pool in Camel

I have a few camel routes that call an external web service, i need to manage a session pool for this web service, keeping a few sessions open and reusing idle ones each time a camel route needs one. ...
2
votes
3answers
208 views

C# How to “verify” that new connections are actually getting reused from connection pool

I have a simple c# code in which I am trying to open and close connections multiple times. How can I ensure that my new connections are coming from connection pool and that it is not hitting the ...
1
vote
1answer
616 views

How to pooling the JMS connection in a standalone Java applications?

We are working on a IBM WebSphere MQ application, and we use JMS API to operating the message. But we have a problem that the connection takes too much time, and we want to pooling the JMS connection, ...
2
votes
0answers
446 views

Pooling Web Workers [closed]

Does anyone know of good patterns/libraries for pooling Web Workers? I want to be able to do something like the following: Set a maximum number of threads. The first time I ask for a Worker it ...
11
votes
1answer
568 views

Best Method of Channel Pooling in Google App Engine

It seems the only way to make the GAE Channel API financially viable is to implement some kind of pooling mechanism (one of the senior app engine product managers even told me this when I emailed them ...
0
votes
1answer
382 views

Expired sessions in GenericObjectPool

I am using child object of org.apache.commons.pool.impl.GenericObjectPool for providing connections to web services (child of org.apache.axis2.client.Stub). How to setup the pool, so connections that ...
1
vote
0answers
651 views

Android Connection pooling

For implementing http connection pooling, I had gone through this link. After reading this I came to conclusion that making a single Http client object and connection manager with different request ...
1
vote
1answer
839 views

Python MySQL connection pooling

I've looked through stackoverflow and can see some oldish posts on this and wondered what the current thinking is about pooling connections in Python for MySQL. We have a set of python processes ...
2
votes
1answer
350 views

WCF Proxy Pooling - Is it worth it?

Is it really worth pooling WCF proxy clients, or is it better to instanciate a new proxy on every call to a given method? By the way, does anyone have a pooling pattern for this kind of proxies which ...
2
votes
0answers
219 views

Database Connections Timing Out (Connection Pooling On Tomcat)

My dB connections are constantly timing out. I looked through some of the solutions people have offered to this, and have implemented them, but nothing has worked out till now. Any new thoughts, will ...
3
votes
3answers
3k views

Implementing Connection Pooling : Java

In one of the interviews that I faced,I was asked to implement connection pooling. So approach was this: Create a List or HashMap Create predefined number of connections Add them to the collection. ...

1 2