RE: Pooling socket connections

2000-11-29 Thread Michaud, Ben A.
-Original Message- From: Dave Bryson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 28, 2000 7:41 PM To: Turbine Subject: Re: Pooling socket connections On Tue, 28 Nov 2000, you wrote: Hi, We are using Forte as a middleware, which encapsulates the business logic

Re: Pooling socket connections

2000-11-29 Thread Jon Stevens
on 11/29/2000 6:34 AM, "Michaud, Ben A." [EMAIL PROTECTED] wrote: Why doesn't a database provide this? I think you are confused about what needs to be pooled. -jon -- twice of not very much is still a lot more than not very much

RE: Pooling socket connections

2000-11-29 Thread Michaud, Ben A.
-Original Message- From: Jon Stevens [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 29, 2000 12:23 PM To: Turbine Subject: Re: Pooling socket connections on 11/29/2000 6:34 AM, "Michaud, Ben A." [EMAIL PROTECTED] wrote: Why doesn't a database provide this?

Re: Pooling socket connections

2000-11-29 Thread Jon Stevens
on 11/29/2000 10:12 AM, "Michaud, Ben A." [EMAIL PROTECTED] wrote: No, actually, I posed the question rhetorically. We need to provide a mechanism to pool database connections, because it does not make sense that the database provide this mechanism. Actually it makes perfect sense that it

Re: Pooling socket connections

2000-11-29 Thread Gunnar R|nning
Jon Stevens [EMAIL PROTECTED] writes: Actually it makes perfect sense that it doesn't. Hello? Why would it pool connections to itself? The overhead is in creating the socket connection and establishing the communication (ie: login and authentication), so given that the database is probably

Re: Pooling socket connections

2000-11-29 Thread Jon Stevens
on 11/29/2000 12:02 PM, "Gunnar R|nning" [EMAIL PROTECTED] wrote: Hello? Maybe because there may be other resources associated with a database session than the socket connection itself. Depending on your database and its implementation the advantage of pooling connections from the client

Pooling socket connections

2000-11-28 Thread Michaud, Ben A.
Hi, We are using Forte as a middleware, which encapsulates the business logic and database access. Instead of opening and closing a socket with every request, I would like to pool the connections, much like what is commonly done with database connections. Has anyone ever pooled socket

Re: Pooling socket connections

2000-11-28 Thread jon
There is a Database connection pool service. Right now it is not generic enough for other objects. However, you can easily create your own service that would be generic enough for objects or just use the Global Cache service to cache your socket connections. -jon Hi, We are using Forte

Re: Pooling socket connections

2000-11-28 Thread Dave Bryson
On Tue, 28 Nov 2000, you wrote: Hi, We are using Forte as a middleware, which encapsulates the business logic and database access. Instead of opening and closing a socket with every request, I would like to pool the connections, much like what is commonly done with database connections.