Discussion:
[arangodb-google] FULLTEXT fuzzy search
Dilip Vamsi Moturi
2018-08-27 09:29:01 UTC
Permalink
emails.ensureIndex({ type: "fulltext", fields: [ "text" ], minLength: 3 })
emails.insert({text: "banana apple"})
emails.insert({text: "banana mango"})
emails.insert({text: "banana avocado"})
FOR mail IN FULLTEXT(emails, "text", "bannana")
RETURN mail

Is there a way to do a full text fuzzy search.

Thanks,
Dilip Vamsi.
--
You received this message because you are subscribed to the Google Groups "ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to arangodb+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Dilip Vamsi Moturi
2018-08-27 13:09:18 UTC
Permalink
Yes, I mean fuzzy query like in Solr/ElasticSearch.

Thanks,
Dilip Vamsi.
Hi Dilip,
could you please elaborate on what do you mean by "fuzziness"? Do you
refer to fuzzy query in Solr/ElasticSearch?
Best,
Andrey
Post by Dilip Vamsi Moturi
emails.ensureIndex({ type: "fulltext", fields: [ "text" ], minLength: 3 }
)
emails.insert({text: "banana apple"})
emails.insert({text: "banana mango"})
emails.insert({text: "banana avocado"})
FOR mail IN FULLTEXT(emails, "text", "bannana")
RETURN mail
Is there a way to do a full text fuzzy search.
Thanks,
Dilip Vamsi.
--
You received this message because you are subscribed to the Google Groups "ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to arangodb+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...