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