Hi Rahul, If you want to turn off indexing then you can use indexed = False, on the attributes which you don't want to index explicitly, because the default value is indexed = True for any attribute type except db.Text and db.Blob, which are not indexed by default.
Though having an index increases the write time, it's the only way of guaranteeing that your entity can be found using a particular attribute. Regards, Jai On Aug 28, 4:52 am, Rahul Kumar <[email protected]> wrote: > Hi Tim > > But I am using this through java API. I have the Data & Ported it with & > without index but I am getting index on all the attributes & dont know > whether it will work or not on Million records to get faster result through > query. > > > > On Fri, Aug 28, 2009 at 12:35 PM, Tim Hoffman <[email protected]> wrote: > > > Hi > > > I found out earlier you can query what indexes exist, but you can't > > create them through the api (even though the call exists) at least in > > the the python sdk > > > Have a look at this thread > > >http://groups.google.com.au/group/google-appengine/browse_thread/thre... > > > Rgds > > > Tim > > > On Aug 27, 11:30 am, rahul kumar <[email protected]> wrote: > > > Hello Techies > > > > I want to create Indexes using Google' Datastore Api so that when I am > > > saving my entities,I can be able to create & get Indexes also to make > > > it easy for my application to search Data. > > > > How can I achieve this. > > > > Please help > > > > thanks > > > Rahul Kumar > > -- > _ _ _ _ _ _ _ _ _ _ > > Thanks & Regards > > Rahul Kumar --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
