Re: mysql hash table equivalent?

From: Douglas McNaught <doug(at)mcnaught(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "Chris St Denis" <chris(at)aebc(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: mysql hash table equivalent?
Date: 2005-10-04 11:34:06
Message-ID: m2ll19349d.fsf@Douglas-McNaughts-Powerbook.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> writes:

> "Chris St Denis" <chris(at)aebc(dot)com> writes:
>> Does postgres support in-memory only tables like the mysql HASH table type?
>
> No, and it doesn't seem particularly necessary: a table that is being
> hit heavily will stay in cache buffers anyhow. You don't need any
> special mechanism.

And if you're really concerned about speed, you should be caching it
in application memory and saving the IPC round trip and the SQL
parsing overhead...

-Doug

In response to

Browse pgsql-general by date

  From Date Subject
Next Message ctobini 2005-10-04 12:00:16 export a select result in a file ?
Previous Message Sean Davis 2005-10-04 11:08:54 Re: Integration with MS Sql Server