arangosh> db.emails.ensureFulltextIndex("content");
{
"id" : "emails/14653",
"type" : "fulltext",
"fields" : [
"content"
],
"unique" : false,
"sparse" : true,
"minLength" : 2,
"isNewlyCreated" : true,
"code" : 201
}
arangosh> db.emails.save({ content:
........> "Hello Alice, how are you doing? Regards, Bob"});
{
"_id" : "emails/14656",
"_key" : "14656",
"_rev" : "_V_qEY8a---"
}
arangosh> db.emails.save({ content:
........> "Hello Charlie, do Alice and Bob know about it?"});
{
"_id" : "emails/14660",
"_key" : "14660",
"_rev" : "_V_qEY8e---"
}
arangosh> db.emails.save({ content: "I think they don't know. Regards, Eve" });
{
"_id" : "emails/14663",
"_key" : "14663",
"_rev" : "_V_qEY8i---"
}
arangosh> db.emails.fulltext("content", "charlie,|eve").toArray();
[
{
"_key" : "14660",
"_id" : "emails/14660",
"_rev" : "_V_qEY8e---",
"content" : "Hello Charlie, do Alice and Bob know about it?"
},
{
"_key" : "14663",
"_id" : "emails/14663",
"_rev" : "_V_qEY8i---",
"content" : "I think they don't know. Regards, Eve"
}
]