Re: Prepared statements vs. Stored Procedures

Поиск
Список
Период
Сортировка
От Tobias Brox
Тема Re: Prepared statements vs. Stored Procedures
Дата
Msg-id 20050621204057.GI22746@oppetid.no
обсуждение исходный текст
Ответ на Prepared statements vs. Stored Procedures  (Oliver Crosby <ryusei@gmail.com>)
Список pgsql-performance
[Oliver Crosby - Tue at 03:46:03PM -0400]
> I'm hoping someone can offer some advice here.
>  I have a large perl script that employs prepared statements to do all its
> queries. I'm looking at using stored procedures to improve performance times
> for the script. Would making a stored procedure to replace each prepared
> statement be worthwhile? If not, when could I use stored procedures to
> improve performance?
>  Thanks in advance.

My gut feeling says that if you are only doing read-operations there are
none or almost none benefits with stored procedures.

One argument we used for not looking much into stored procedures, was
that we expect the database to become the bottleneck if we get too much
activity.  At the application side, we can always expand by adding more
boxes, but the database, beeing the hub of the system, cannot easily be
expanded (we can tweak and tune and upgrade the whole box, and
eventually at some point we believe we will need to put old data at a
separate database, and also make a replica for heavy report queries)

If you have loads of data going from the database to the application, a
little bit of light processing done on the data, and then data going
back to the database server, then I guess stored procedures would be
better.

В списке pgsql-performance по дате отправления:

Предыдущее
От: Paul Ramsey
Дата:
Сообщение: Re: Querying 19million records very slowly
Следующее
От: Michael Fuhr
Дата:
Сообщение: Re: Limit clause not using index