I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome.
I'm sure we can beat the 9 comments on the corresponding MySQL thread :)
|
23
|
I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome. I'm sure we can beat the 9 comments on the corresponding MySQL thread :)
|
|||
|
|
|
|
Since postgres is a lot more sane than MySQL, so there are not that many "tricks" to report on ;-) The manual has some nice performance tips. A few other performance related things to keep in mind:
Here's a few things I've found useful that aren't config or performance related per say. To see what's currently happening:
Search misc functions:
Find size of database:
Find size of all databases:
Find size of tables and indexes:
Or, to list all tables and indexes (probably easier to make a view of this):
Oh, and you can nest transactions, rollback partial transactions++
|
||||||||||
|
|
|
Materialized Views are pretty easy to setup:
That creates a new table, my_matview, with the columns and values of my_view. Triggers or a cron script can then be setup to keep the data up to date, or if you're lazy:
|
|||
|
|
|
|
|
||
|
|
|
|
Postgres has a very powerful datetime handling facility thanks to its INTERVAL support. For example:
You can cast many strings to an INTERVAL type. |
||
|
|
|
|
pgcrypto: more cryptographic functions than many programming languages' crypto modules provide, all accessible direct from the database. It makes cryptographic stuff incredibly easy to Just Get Right. |
||
|
|
|
|
One of the things I really like about postgre is some of the data types supported in columns. For example, there are column types made for storing Network Addresses and Arrays. The corresponding functions (Network Addresses / Arrays) for these column types let you do a lot of complex operations inside queries that you'd have to do by processing results through code in MySQL or other database engines. |
||
|
|
|
The easiest trick to let postgresql perform a lot better (apart from setting and using proper indexes of course) is just to give it more RAM to work with (if you have not done so already). On most default installations the value for shared_buffers is way too low (in my opinion). You can set
in postgresql.conf. Divide this number by 128 to get an approximation of the amount of memory (in MB) postgres can claim. If you up it enough this will make postgresql fly. Don't forget to restart postgresql. On Linux systems, when postgresql won't start again you will probably have hit the kernel.shmmax limit. Set it higher with
To make this persist between boots, add a kernel.shmmax entry to /etc/sysctl.conf. A whole bunch of Postgresql tricks can be found here: |
||
|
|
|
|
|
|||
|
|
|
COPY I'll start. Whenever I switch to Postgres from SQLite, I usually have some really big datasets. The key is to load your tables with COPY FROM rather than doing INSERTS. See documentation: http://www.postgresql.org/docs/8.1/static/sql-copy.html The following example copies a table to the client using the vertical bar (|) as the field delimiter:
To copy data from a file into the country table:
See also here: http://stackoverflow.com/questions/364017/faster-bulk-inserts-in-sqlite3/759866#759866 |
||
|