KVP table vs. hstore - hstore performance (Was: Postgres NoSQL emulation) - Mailing list pgsql-performance

From Stefan Keller
Subject KVP table vs. hstore - hstore performance (Was: Postgres NoSQL emulation)
Date
Msg-id BANLkTi=LjFTnn8hLwBZc1c87Vq+pw02+jQ@mail.gmail.com
Whole thread Raw
Responses Re: KVP table vs. hstore - hstore performance (Was: Postgres NoSQL emulation)
Re: KVP table vs. hstore - hstore performance (Was: Postgres NoSQL emulation)
List pgsql-performance
Hi,

I am conducting a benchmark to compare KVP table vs. hstore and got
bad hstore performance results when the no. of records is greater than
about 500'000.

CREATE TABLE kvp ( id SERIAL PRIMARY KEY, key text NOT NULL, value text );
-- with index on key
CREATE TABLE myhstore ( id SERIAL PRIMARY KEY, obj hstore NOT NULL );
-- with GIST index on obj

Does anyone have experience with that?

Yours, Stefan

pgsql-performance by date:

Previous
From: Robert Haas
Date:
Subject: Re: Query improvement
Next
From: "ktm@rice.edu"
Date:
Subject: Re: Using pgiosim realistically