As of 0.20.0, ParadeDB has migrated to a new SQL syntax. The old syntax is still supported and we have preserved the legacy docs here.
0.20.0
Splits on any non-alphanumeric character
CREATE INDEX search_idx ON mock_items USING bm25 (id, (description::pdb.simple)) WITH (key_field='id');
SELECT 'Tokenize me!'::pdb.simple::text[];
text --------------- {tokenize,me} (1 row)
Was this page helpful?