SQL indexing on varchar

前端 未结 5 837
伪装坚强ぢ
伪装坚强ぢ 2020-12-25 15:32

I have a table whose columns are varchar(50) and a float. I need to (very quickly) look get the float associated with a given string. Even with ind

相关标签:
5条回答
  • 2020-12-25 15:44

    Keys on VARCHAR columns can be very long which results in less records per page and more depth (more levels in the B-Tree). Longer indexes also increase the cache miss ratio.

    How many strings in average map to each integer?

    If there are relatively few, you can create an index only on integer column and PostgreSQL will do the fine filtering on records:

    CREATE INDEX ix_mytable_assoc ON mytable (assoc);
    
    SELECT  floatval
    FROM    mytable
    WHERE   assoc = givenint
            AND phrase = givenstring
    

    You can also consider creating the index on the string hashes:

    CREATE INDEX ix_mytable_md5 ON mytable (DECODE(MD5(phrase), 'HEX'));
    
    SELECT  floatval
    FROM    mytable
    WHERE   DECODE(MD5(phrase), 'HEX') = DECODE(MD5('givenstring'), 'HEX')
            AND phrase = givenstring -- who knows when do we get a collision?
    

    Each hash is only 16 bytes long, so the index keys will be much shorter while still preserving the selectiveness almost perfectly.

    0 讨论(0)
  • 2020-12-25 15:44

    By declaring an index on (phrase, assoc, floatval) you will get a "covering index", which allows the query posted in the question to performed without even accessing the table. Assuming that either phrase or assoc alone is highly selective (not many rows share the same value for the field), creating an index on that field alone should yield almost the same performance.

    Generally, you will want to limit the number of indexes to the smallest set that gets your frequent queries up to the desired performance. For each index you add to a table, you pay some disk space, but more importantly you pay the price of having the DBMS do more work on each INSERT into the table.

    0 讨论(0)
  • 2020-12-25 15:53

    It couldn't hurt to try adding the int and making your index on int, varchar and include float - this would be covering and pretty efficient - not sure if Postgres has included columns - if it doesn't simply add it to the index itself.

    There are several other techniques you could look into (I'm not familiar with all Postgres features, so I'll give them by SQL Server name):

    Indexed views - you can effectively materialize a view which joins several tables - so you could join your varchar to your int and have your index on int and varchar and float

    Included columns - you can include columns in an index to ensure that the index is covering - i.e. have an index on varchar include (float) - if your index isn't covering, the query optimizer is still going to have to use the index and then do a bookmark lookup to get the remaining data.

    0 讨论(0)
  • 2020-12-25 15:58

    Short answer: yes, there will be much to gain. At least as long as you don't have many updates, but it's quite likely that the overhead even there will not be noticable.

    0 讨论(0)
  • 2020-12-25 16:04

    I'd recommend simply a hash index:

    create index mytable_phrase_idx on mytable using hash(phrase);
    

    This way queries like

    select floatval from mytable where phrase='foo bar';
    

    will be very quick. Test this:

    create temporary table test ( k varchar(50), v float);
    insert into test (k, v) select 'foo bar number '||generate_series(1,1000000), 1;
    create index test_k_idx on test using hash (k);
    analyze test;
    explain analyze select v from test where k='foo bar number 634652';
    
                                                       QUERY PLAN                                                    
    -----------------------------------------------------------------------------------------------------------------
     Index Scan using test_k_idx on test  (cost=0.00..8.45 rows=1 width=8) (actual time=0.201..0.206 rows=1 loops=1)
       Index Cond: ((k)::text = 'foo bar number 634652'::text)
     Total runtime: 0.265 ms
    (3 rows)
    
    0 讨论(0)
提交回复
热议问题