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