Re: efficient storing of urls - Mailing list pgsql-general

From Chris Browne
Subject Re: efficient storing of urls
Date
Msg-id 6065dsoy4n.fsf@dev6.int.libertyrms.info
Whole thread Raw
In response to efficient storing of urls  (Shane Wegner <shane-keyword-pgsql.a1e0d9@cm.nu>)
List pgsql-general
shannyconsulting@earthlink.net (Sean Shanny) writes:
> Can you give an example of a query that has gotten slower due to the
> increasing size of the urls table with an explain analyze?

There's a "known issue" in that URL strings commonly contain the prefix:

   http://www.

What you get, as a result, is that there's very little uniqueness
there, and indices are known to suffer.

There was a report last week that essentially putting the URLs in
backwards, and having a functional index on the backwards form, led to
greatly improved selectivity of the index.

The approach being suggested here looks more like that of the "prefix
splitting" typical to Patricia Tries; that's what the New Oxford
English Dictionary project used for building efficient text search
indices.  It ought to be pretty quick, but pretty expensive in terms
of the complexity that gets added in.

I suspect that doing the "reverse the URL" trick would be a cheaper
"fix."
--
"cbbrowne","@","ntlug.org"
http://www.ntlug.org/~cbbrowne/linuxxian.html
"This .signature is  shareware.  Send in $20 for  the fully registered
version..."

pgsql-general by date:

Previous
From: Martijn van Oosterhout
Date:
Subject: Re: PLSQL Question regarding multiple inserts
Next
From: "Mike Wertheim"
Date:
Subject: help with correlated delete and outer join