From: | Greg Stark <gsstark(at)mit(dot)edu> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Storing a file hash as primary key |
Date: | 2004-05-07 19:11:37 |
Message-ID: | 87isf8rr12.fsf@stark.xeocode.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Eduardo Pérez Ureta <eperez(at)it(dot)uc3m(dot)es> writes:
> I was wondering what the best way is to store a file hash (MD5 or SHA1)
> and make it primary key indexed.
> I have seen some people storing the hexadecimal encoded MD5 in a
> CHAR(32) but it may be a better idea to use a CHAR(16) without encoding
> the string, but that may cause some problems.
I would say either char(32) or bytea(16). Not char(16) since you don't want to
treat the raw binary data using any specific character encoding or sort it
according to any locale specific rules etc.
Personally I would have preferred bytea(16) but for some reason the php
drivers seem to jut drop NULL there when I try to store raw binary md5 hashes.
So for now I just declared it bytea with no length specification and store the
hex encoded hash.
If anyone knows how to get Pear::DB to store binary data in a bytea column, by
all means.
--
greg
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2004-05-07 19:27:47 | Re: Interpreting vacuum verbosity |
Previous Message | Rick Gigger | 2004-05-07 19:03:14 | Re: pgFoundry Open For Business |