search
search copied to clipboard
A wrapper around Google's full text search API for App Engine
Using thor in conjunction with `Django Rest Framework` and with `debug=True`, the `raw_query` key/value pair is added to the response of any paginated queries. However we are not currently handling...
This PR adds support for customizing the default RPC deadline passed to the underlying search API which currently *appears* to default to 10 seconds, which can be kinda low for...
The search API allows multiple fields with the same name, effectively meaning that the field has multiple values[1][ref1]. In Django nomenclature, this would be functionally equivalent to a ListField. search...
Hi, I'm using the ReindexMapReduceTask, but it fails to start when using the local dev server, and when deployed to App Engine. The first error is a TypeError exception: ```...
Hi, I am trying to order the search result by prioritising. I implemented a score integer field for search index document and ordering search result with this field. like this:...
Hi I am looking to store object data on GAE search API. I didn't see any information about in google documentation. Probably, they are not given support for this implementation....
Currently this will work: ``` search_qs = SearchQueryAdapter.from_queryset(AModel.objects.all()) search_qs = search_qs.order_by('-foo') ``` But not this: ``` qs = AModel.objects.order_by('-foo') search_qs = SearchQueryAdapter.from_queryset(qs) ```