1st, my application, in quota details, the number of indexes get reach to 200 of 200. but when i count in Datastore Indexes, its over 200 indexes. so why i can add more than 200 indexes ?
2nd, in https://cloud.google.com/appengine/docs/quotas Free Default Daily Limit of number of indexes is 200* ( *. not a daily limit but a total limit)
So it's mean when you pay for it you will add more than 200 indexes? is that true ?
3rd, my code :
ModelMeta meta = ModelMeta.get();
List modelList = Datastore.query(meta).filter(meta.fieldA.equal("0"))
.filter(meta.fieldB.equal("1").asList();
Event i defined index for its or not, every things run OK.
i dont understand why?
thanks for help.