arangosh> db.emails.ensureFulltextIndex("content");
{
"fields" : [
"content"
],
"id" : "emails/73855",
"isNewlyCreated" : true,
"minLength" : 2,
"name" : "idx_1646382081665662978",
"sparse" : true,
"type" : "fulltext",
"unique" : false,
"code" : 201
}
arangosh> db.emails.save({ content:
........> "Hello Alice, how are you doing? Regards, Bob"});
{
"_id" : "emails/73859",
"_key" : "73859",
"_rev" : "_ZXF6dES---"
}
arangosh> db.emails.save({ content:
........> "Hello Charlie, do Alice and Bob know about it?"});
{
"_id" : "emails/73861",
"_key" : "73861",
"_rev" : "_ZXF6dES--A"
}
arangosh> db.emails.save({ content: "I think they don't know. Regards, Eve" });
{
"_id" : "emails/73863",
"_key" : "73863",
"_rev" : "_ZXF6dES--C"
}
arangosh> db.emails.fulltext("content", "charlie,|eve").toArray();
[
{
"_key" : "73861",
"_id" : "emails/73861",
"_rev" : "_ZXF6dES--A",
"content" : "Hello Charlie, do Alice and Bob know about it?"
},
{
"_key" : "73863",
"_id" : "emails/73863",
"_rev" : "_ZXF6dES--C",
"content" : "I think they don't know. Regards, Eve"
}
]