Wrong. Don't use B-Tree for random indexes, there's HASH index exactly for this:
CREATE INDEX [index_name] ON [table_name] USING HASH ([column_name]);
Wrong. Don't use B-Tree for random indexes, there's HASH index exactly for this: