12
這花了我一段時間才弄清楚,幾星期前我在外語wiki上找到了答案,這非常有幫助,所以我想我會分享。如何啓用PostgreSQL功能分析器?
這花了我一段時間才弄清楚,幾星期前我在外語wiki上找到了答案,這非常有幫助,所以我想我會分享。如何啓用PostgreSQL功能分析器?
在Win32上的PostgreSQL 8.3上,分析插件默認安裝,但未加載。就在執行此SQL:當你要分析一些代碼
LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';
...然後,
drop table if exists bazzybar; -- reset the profiling stats
select my_function_here('lala',123); -- this line and variations as many times as you deem fit
select * from bazzybar; -- show the time spent on each line of your function