Appengine ZigZag Merge Join Algo
问题 I have question on zigzag merge join algorithm. In article https://developers.google.com/appengine/articles/indexselection , mentioned Index(Photo, owner_id, -date), Index(Photo, size, -date) can be combine to become Index(Photo, owner_id, size, -date) ; My test below: <datastore-index kind="KindTest1" ancestor="false" source="auto"> <property name="hideIt" direction="asc"/> <property name="voteCount" direction="desc"/> </datastore-index> <datastore-index kind="KindTest1" ancestor="false"