If I wrote something in plperlu, when would that module be reloaded? Every time the function ran? The first time it ran? Does the Perl DLL get unloaded if it hasn't been used in a while, and then after that it'd be another module reload?
相关问题
- $ENV{$variable} in perl
- Django distinct is not working
- PostgreSQL: left outer join syntax
- Connecting Python to a Heroku PostgreSQL DB?
- PostgreSQL - Deleting data that are older than an
相关文章
- postgresql 关于使用between and 中是字符串的问题
- postgresql 月份差计算问题
- Using boolean expression in order by clause
- Table valued Parameter Equivalent in Postgresql
- in redshift postgresql can I skip columns with the
- Oracle equivalent of PostgreSQL INSERT…RETURNING *
- Running a perl script on windows without extension
- Comparing speed of non-matching regexp
I think the module will be loaded once for each server process (i.e. new session / connection) on the first use of that language within that session.
You can preload them to avoid any delay on first use, per the manual for
shared_preload_libraries
andlocal_preload_libraries
.Old PostgreSQL versions just had a single
preload_libraries
setting; see the manual for your version if you're on something very old.