Re: Inputs for efficient querying

2021-02-12 Thread ankit Soni
" > >> > >> You can create an index on the map to optimize this sort of query > >> > >> gfsh>create index --name="IndexName" --expression="r.column2[*]" > >> --region="/exampleRegion r" >

Re: Inputs for efficient querying

2021-02-10 Thread Jason Huynh
e.apache.org/docs/guide/112/developing/query_index/creating_map_indexes.html >> >> In addition, I noticed that your value implements Serializable. You will >> get better performance out of the query engine if you configure PDX >> serialization for your object, either by conf

Re: Inputs for efficient querying

2021-02-09 Thread ankit Soni
ps://geode.apache.org/docs/guide/112/developing/query_index/creating_map_indexes.html >> >> In addition, I noticed that your value implements Serializable. You will >> get better performance out of the query engine if you configure PDX >> serialization for your object, eith

Re: Inputs for efficient querying

2021-02-09 Thread ankit Soni
rmance out of the query engine if you configure PDX > serialization for your object, either by configuring the auto serializer or > implementing PdxSerializable. That avoids the need to deserialize your > entire value on the server to query/index it. > > -Dan > > > _

Re: Inputs for efficient querying

2021-01-29 Thread Dan Smith
need to deserialize your entire value on the server to query/index it. -Dan From: ankit Soni Sent: Friday, January 29, 2021 9:32 AM To: dev@geode.apache.org Subject: Inputs for efficient querying Hello Team, I am loading data into Geode (V 1.12) with the following *Key (o

Inputs for efficient querying

2021-01-29 Thread ankit Soni
Hello Team, I am loading data into Geode (V 1.12) with the following *Key (of type String)* and *value (custom java object - ValueObject)*. *public class ValueObject implements Serializable {* * private int id;* * private String keyColumn; <- Region.Key * * private String