2012/06/13

[Google App Engine]kindに複数のindexを設定

index.yamlでkindに対するindexを設定することができたが、同じkindに対して複数のindexを登録をすることは可能なのだろうか?

答えはYesのようである。

indexes:

- kind: Cat
ancestor: no
properties:
- name: name
- name: age
direction: desc

- kind: Cat
properties:
- name: name
direction: asc
- name: whiskers
direction: desc

- kind: Store
ancestor: yes
properties:
- name: business
direction: asc
- name: owner
direction: asc

via:インデックスの設定方法を調べたよ - Google App Engine
kind Catに対して複数のindexが登録されている。

実際に試してみたところ、正常動作しました。

これで一安心、一安心。

0 コメント:

コメントを投稿