I have a c# asp.net app that connects to local databases using port forwarding. Depending on the local users upload speed this can make it really slow. Is there anyway (other than limiting the databases transactions which we are doing) of making this whole process run quicker. What database architecutre would help etc. I'm a bit of a beginner with this so i would appreciate any help you can offer.
1 Answer
npgsql can do pooling - http://npgsql.projects.postgresql.org/docs/manual/UserManual.html. Maybe pgBouncer helps to you. http://pgfoundry.org/projects/pgbouncer
1 Comment
Daniel Casserly
Cool that will certainly help. Does connection pooling make each transaction quicker? Is this almost as good as caching results (i imagine using the two strategies side by side is the best)