Google App Engine Search API
问题 When querying a search index in the Python version of the GAE Search API, what is the best practice for searching for items where documents with words match the title are first returned, and then documents where words match the body? For example given: body = """This is the body of the document, with a set of words""" my_document = search.Document( fields=[ search.TextField(name='title', value='A Set Of Words'), search.TextField(name='body', value=body), ]) If it is possible, how might one