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