Hi Arthi, Here is the link to the documentation for configuring SQL indexes via XML - https://apacheignite.readme.io/docs/sql-queries#configuring-sql-indexes-using-queryentity
-Prachi On Wed, Mar 23, 2016 at 8:53 PM, vkulichenko <[email protected]> wrote: > Arthi, > > You can provide the list of fields in QueryIndex bean: > > <bean class="org.apache.ignite.cache.QueryIndex"> > <constructor-arg index="0"> > <list> > <value>field1</value> > <value>field2</value> > <value>field3</value> > </list> > </constructor-arg> > <constructor-arg index="1" value="SORTED"/> > </bean> > > I will update the docs, thanks for pointing this out! > > -Val > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/Group-Indexes-using-query-entities-defined-in-XML-config-tp3649p3652.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. >
