我需要在列中执行Contains操作.对于Contains操作,我们需要在单词之前和之后使用通配符.
例如:个性化
查询 – >比如’%sonal%’
由于此类查询无法使用索引.有没有办法提高搜索速度.
注意:我使用MySql(InnoDB)和PSQL
解决方法:
PostgreSQL有解决方案 – trigram索引.这是article或documentation
postgres=# create extension pg_trgm ;
CREATE EXTENSION
postgres=# create index on obce using gin (nazev gin_trgm_ops);
CREATE INDEX
postgres=# explain select * from obce where nazev like '%Bene%';
┌──────────────────────────────────────────────────────────────────────────────┐
│ QUERY PLAN │
╞══════════════════════════════════════════════════════════════════════════════╡
│ Bitmap Heap Scan on obce (cost=20.00..24.02 rows=1 width=41) │
│ Recheck Cond: ((nazev)::text ~~ '%Bene%'::text) │
│ -> Bitmap Index Scan on obce_nazev_idx (cost=0.00..20.00 rows=1 width=0) │
│ Index Cond: ((nazev)::text ~~ '%Bene%'::text) │
└──────────────────────────────────────────────────────────────────────────────┘
(4 rows)
它也适用于正则表达式.