ジグザグマージ結合アルゴリズムについて質問があります。記事https://developers.google.com/appengine/articles/indexselectionで言及
Index(Photo, owner_id, -date),
Index(Photo, size, -date)
結合してなることができます
Index(Photo, owner_id, size, -date) ;
以下の私のテスト:
<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" source="auto">
<property name="hideIt" direction="asc"/>
<property name="createdByDate" direction="asc"/>
</datastore-index>
can these 2 indexes combine to become,
<datastore-index kind="KindTest1" ancestor="false" source="auto">
<property name="hideIt" direction="asc"/>
<property name="createdByDate" direction="asc"/>
<property name="voteCount" direction="desc"/>
</datastore-index>
メールを送信する理由は、これを開発環境と本番環境で試してみたところ、機能せず、それぞれ個別のインデックスが必要だったからです。もっと詳しく説明できますか?