Re: in memory views
От | Dave Dutcher |
---|---|
Тема | Re: in memory views |
Дата | |
Msg-id | 01fd01c67475$ef17d530$8300a8c0@tridecap.com обсуждение исходный текст |
Ответ на | Re: in memory views (Thomas Vatter <thomas.vatter@network-inventory.de>) |
Ответы |
Re: in memory views
|
Список | pgsql-performance |
Are you using the Postgres JDBC driver? Or are you using an ODBC JDBC driver? The Postgres specific driver is usually faster.
-----Original Message-----Scott Marlowe wrote:
From: pgsql-performance-owner@postgresql.org [mailto:pgsql-performance-owner@postgresql.org] On Behalf Of Thomas Vatter
Sent: Wednesday, May 10, 2006 3:54 PM
To: Scott Marlowe
Cc: Tino Wildenhain; pgsql-performance@postgresql.org
Subject: Re: [PERFORM] in memory viewsYes, the difference between psql command line and application is 6 seconds to 40 seconds. It isOn Wed, 2006-05-10 at 10:41, Thomas Vatter wrote:Scott Marlowe wrote:What happens if you do this by declaring it as a cursor and then fetching the first row?I do executeQuery(), for the resultSet I do next() and return one row, but wait, I have to review the logic in this area, I can tell you tomorrowA good short test is to run explain analyze on the query from the psql command line. If it shows an execution time of significantly less than what you get from you application, then it is likely that the real problem is that your application is receiving the whole result set via libpq and waiting for that. A cursor will solve that problem. ---------------------------(end of broadcast)--------------------------- TIP 4: Have you searched our list archives? http://archives.postgresql.org
exactly the step resultSet = excecuteQuery() that needs 40 seconds. I use next() as a cursor
through the resultSet, but I fear this is not enough, do I have to use createStatement(resultSetType,
resultSetConcurrency) respectively prepareStatement (resultSetType, resultSetConcurrency) to
achieve the cursor behaviour?
regards
tom
В списке pgsql-performance по дате отправления: