chmoder
chmoder

Reputation: 986

How to specify the namespace in index.yaml

How do I specify a namespace in my index.yaml?

Example:
- kind: Account
  properties:
  - name: first_name
  - name: balance

https://developers.google.com/appengine/docs/python/config/indexconfig#Python_Index_definitions

Upvotes: 2

Views: 591

Answers (1)

David Cifuentes
David Cifuentes

Reputation: 564

You don't. Namespaces let you segregate data at a logical level but they share the index definitions and depending on how you implement them, they usually share the same kinds as well.

Upvotes: 4

Related Questions