我想使用 Levenshtein,我正在寻找一些例子。我已经阅读了文档,但我不知道如何实现它。我尝试构建自己的分析器,但每次使用它都会崩溃。
这是我遵循的文档: https ://crate.io/docs/reference/sql/fulltext.html
示例表:
CREATE TABLE IF NOT EXISTS "test"."accounts" (
"customer_name" STRING INDEX USING FULLTEXT WITH (
analyzer = 'standard'
),
"customer_no" STRING,
PRIMARY KEY ("customer_no")
)
INSERT INTO "test"."accounts"
(customer_name, customer_no)
VALUES('Walmart','C00001');
我的目标是搜索沃尔玛并返回沃尔玛。