Python App Engine SDK を使用して、最大量の全文検索結果をループする必要があります。私のコードは現在次のとおりです。
search_index = search.Index(name="fullText")
indexed_results = search_index.search(search_query)
for scored_document in indexed_results:
hits_from_full_text_search.append(scored_document.doc_id)
カーソルクラスを使用する必要があることがわかりますが、カーソルが存在する間、上記のクエリを継続的にループするように調整する方法はわかりません。
編集:
私の現在のデータ サイズに基づくと、数回以上ループする必要はないと予想されるため、GAE プロセスのタイムアウト制限内にとどまる必要があります。