Re: FW: KVP table vs. hstore - hstore performance (Was: Postgres NoSQL emulation)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




My problem is, that in fact I don't know which tag to index since I'm
running a web admin application where users can enter arbitrary
queries.

For a tag cloud, try this :

- table tags ( tag_id, tag_name )
- table articles ( article_id )
- table articles_to_tags( article_id, tag_id )

now this is the classical approach, which doesn't work so well when you want to get an article that has several tags (tag intersection).

So, materialize the list of tag_ids for each article in an INTEGER[] array in the articles table, kept up to date with triggers.

Create a gist index on that, and use indexed array vs array operators.

--
Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance


[Postgresql General]     [Postgresql PHP]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Yosemite]

  Powered by Linux