Suppose a database table has a column ‘Name’ which is defined as key for the table. Usual name values will be ‘Bill’, ‘Elizabeth’, ‘Bob’, ‘Alice’. Lookups on the table will be done by the name key as well.
Does hashing the values optimize the operations in any way? i.e. entering each name as some hashed value of the name (suppose MD5 – 32 bits).
If so – shouldn’t this be a feature of the database and not something the client handles?
Assuming your database generates an index for the primary key (and I can’t imagine it wouldn’t) it’s doing it for you. So yes, it should absolutely be something that the database handles.