arangosh> db.emails.ensureFulltextIndex("content");
{
"id" : "emails/14520",
"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/14523",
"_key" : "14523",
"_rev" : "_UWy-FVe---"
}
arangosh> db.emails.save({ content:
........> "Hello Charlie, do Alice and Bob know about it?"});
{
"_id" : "emails/14527",
"_key" : "14527",
"_rev" : "_UWy-FVi---"
}
arangosh> db.emails.save({ content: "I think they don't know. Regards, Eve" });
{
"_id" : "emails/14530",
"_key" : "14530",
"_rev" : "_UWy-FVi--_"
}
arangosh> db.emails.fulltext("content", "charlie,|eve").toArray();
[
{
"_key" : "14527",
"_id" : "emails/14527",
"_rev" : "_UWy-FVi---",
"content" : "Hello Charlie, do Alice and Bob know about it?"
},
{
"_key" : "14530",
"_id" : "emails/14530",
"_rev" : "_UWy-FVi--_",
"content" : "I think they don't know. Regards, Eve"
}
]