Discussion:
PostgreSQL equivalent to MySQL's HEAP tables?
(too old to reply)
Mitch Pirtle
2004-08-15 14:18:51 UTC
Permalink
Hi gang,

I have a table with three columns but many rows, that will constantly be
updated and selected. The MySQL way is to create a HEAP table, or
basically a table that is stored only in RAM.

How shall I do this in PostgreSQL? Is there a better way?

-- Mitch, loving 8.0.0 beta1


---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
Peter Eisentraut
2004-08-15 18:52:39 UTC
Permalink
Post by Mitch Pirtle
I have a table with three columns but many rows, that will constantly
be updated and selected. The MySQL way is to create a HEAP table, or
basically a table that is stored only in RAM.
How shall I do this in PostgreSQL? Is there a better way?
Use a ramdisk. PostgreSQL only has one storage engine.
--
Peter Eisentraut
http://developer.postgresql.org/~petere/


---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to ***@postgresql.org)
Loading...