I'm trying to enable multi-word search with google app engine. However there appears an error message in the log as follows
The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console.
This query needs this index:
- kind: A
properties:
- name: __searchable_text_index
- name: __searchable_text_index
- name: published
- name: modified
direction: desc
The actual query I run is
entities = A.all().filter("modified >", timeline).filter("published =", True).filter("modified <=", bookmark ).order("-modified").search(self.request.get('q')).fetch(PAGESIZE+1)
It works with one word but for phrases with 2 or more words it fails. Do you have any idea how I should do it? Thanks