On Feb 27, 11:40 pm, "Ikai L (Google)" <[email protected]> wrote: > Are you using setProperty on your Entities or setUnindexedProperty? >
Ah huh! That explains it, I should use set unindexed property as you suggested, thanks a lot :). Best regards, Imran > http://code.google.com/appengine/docs/java/javadoc/com/google/appengi..., > java.lang.Object) > > <http://code.google.com/appengine/docs/java/javadoc/com/google/appengi..., > java.lang.Object)>All properties are indexed by default. The index viewer in > the datastore viewer only refers to custom indexes generated from your local > config. > > > > > > On Sat, Feb 27, 2010 at 9:34 AM, imyousuf <[email protected]> wrote: > > Hmm... > > The thing is, I did not create any index consciously and the Datastore > > Index viewer says - > > "You have not created indexes for this application." > > > Moreover I am using the Datastore API directly to reduce JPA/JDO > > overhead, under these > > circumstance what could be the reason for 10x difference? If you would > > still go with > > index, how can I ensure that, there is no index except for the primary > > keys, as I designed > > the app to use primary keys only. > > > Thank you, > > > Imran > > > On Feb 27, 12:14 am, "Ikai L (Google)" <[email protected]> wrote: > > > Total storage includes things such as indexes. Indexes can consume > > several > > > times what the actual entity consumes worth of data, so it's worth noting > > > that for space efficiency purposes you should not over-index fields. Mark > > > them as unindexed when possible. > > > > On Thu, Feb 25, 2010 at 11:00 PM, imyousuf <[email protected]> wrote: > > > > Hi, > > > > > I am having trouble to understand datastore quota details for my > > > > application. My Datastore Statistics say Total size of all entities is > > > > 14 MegaBytes. Whereas my quota details say: 13% - 0.13 of 1.00 GBytes > > > > > I am not sure how 14MB equates to 0.13 of 1.00GBytes. > > > > > Can someone please help me understand it? > > > > > Thank you, > > > > > Imran > > > > > -- > > > > 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]<google-appengine%2Bunsubscrib > > > > [email protected]><google-appengine%2Bunsubscrib > > [email protected]> > > > > . > > > > For more options, visit this group at > > > >http://groups.google.com/group/google-appengine?hl=en. > > > > -- > > > Ikai Lan > > > Developer Programs Engineer, Google App Enginehttp:// > > googleappengine.blogspot.com|http://twitter.com/app_engine > > > -- > > 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]<google-appengine%2Bunsubscrib > > [email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/google-appengine?hl=en. > > -- > Ikai Lan > Developer Programs Engineer, Google App > Enginehttp://googleappengine.blogspot.com|http://twitter.com/app_engine -- 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.
