Comments on: Using Multiple Indexes per Collection in ArangoDB https://arangodb.com/2015/12/using-multiple-indexes-per-collection/ The database for graph and beyond Wed, 17 Apr 2024 06:25:43 +0000 hourly 1 https://wordpress.org/?v=6.7.1 By: Haseb Ansari https://arangodb.com/2015/12/using-multiple-indexes-per-collection/#comment-384 Thu, 18 Feb 2016 14:12:00 +0000 http://www.arangodb.com/?p=11550#comment-384 In reply to jsteemann.

how will it handle indexing if I have an array and in that array I have another array which have my desired key:value……that means I have to index the value which lies inside a nested array……?????

]]>
By: jsteemann https://arangodb.com/2015/12/using-multiple-indexes-per-collection/#comment-383 Mon, 18 Jan 2016 08:31:00 +0000 http://www.arangodb.com/?p=11550#comment-383 In reply to Haseb Ansari.

A fulltext index can be created on a single attribute. However, if the given attribute value is an array or object, the fulltext index will index the direct subvalues, e.g.

{ “text” : “some value” } => will index “some value”
{ “text” : [ “some value”, “foobar” ] } => will index “some value” and “foobar”
{ “text” : { “what” : “some value”, “else” : “foobar” } } => will index “some value” and “foobar”

]]>
By: Haseb Ansari https://arangodb.com/2015/12/using-multiple-indexes-per-collection/#comment-382 Thu, 14 Jan 2016 14:49:00 +0000 http://www.arangodb.com/?p=11550#comment-382 how to do full text search in a collection with multiple attributes ? plsssssss some expert answer ???

]]>