Re: Performace Optimization for Dummies - Mailing list pgsql-performance

From Matthew Nuzum
Subject Re: Performace Optimization for Dummies
Date
Msg-id 451C8E35.7000906@canonical.com
Whole thread Raw
In response to Re: Performace Optimization for Dummies  ("Carlo Stonebanks" <stonec.register@sympatico.ca>)
List pgsql-performance
Carlo Stonebanks wrote:
> Lots of great info here, I will see what applies to my situation. However, I
> don't see bulk inserts of the tables working, because all of the tables need
> to be refreshed as values to deduplicate and match will change with every
> row added. In order for this to work, i would have to write queries against
> the hash tables. This is where something like MySQL's in-memory tables would
> have come in handy...
>
> What is GDB?
>
> Carlo

Sorry, meant GDBM (disk based hash/lookup table).

With Postgres if your tables fit into RAM then they are in-memory as
long as they're actively being used.

Hashtables and GDBM, as far as I know, are only useful for key->value
lookups. However, for this they are *fast*. If you can figure out a way
to make them work I'll bet things speed up.
--
Matthew Nuzum
newz2000 on freenode

pgsql-performance by date:

Previous
From: "Jim C. Nasby"
Date:
Subject: Re: any hope for my big query?
Next
From: "Carlo Stonebanks"
Date:
Subject: Re: Performace Optimization for Dummies