-
I have been using the awssum amazon cloudsearch api for awhile. Just recently I started getting a 411 error when adding a document.
Here is a pastebin: http://pastebin.com/tBrvMWU2
Sometimes I get 4…
-
A query request can fail for many reasons, however only code 403 from Amazon is handled here: https://github.com/boto/boto/blob/develop/boto/cloudsearch/search.py#L303
The rest errors are silently sw…
-
I'm trying to set up a CloudSearch domain with a text field with stemming disabled.
The documentation here says it should be possible:
http://docs.aws.amazon.com/cloudsearch/latest/developerguide/AP…
-
AWS recently added the ability to use different regions for their endpoints. This should be added to the plugin. See http://docs.aws.amazon.com/cloudsearch/latest/developerguide/endpoints.html
-
Here is an example: http://lightnet.is/space/studioblue/comments/45/why_we_collaborate_some_surprises_in_this/
Search on "transcript" in the comment and it works.
search on "trillion" in the text h…
-
I am calling updateSynonymOptions as follows:
```
$this->_client = CloudSearchClient::factory(/*credentials*/))
$args = array('DomainName'=>$this->_domain, 'Synonyms'=>$synonyms);
$response = $this-…
-
It appears that boto currently only supports two regions. It would be nice to support the more recently added ones.
Current list of CloudSearch regions is here: http://aws.amazon.com/cloudsearch/faq…
-
We need to be able to search across the docs and display results, let's utilize a third party hosted service which can consume the docs, index them, and be accessed via CORs so we can display the resu…
-
See http://docs.aws.amazon.com/cloudsearch/latest/developerguide/geosearch.html
-
in CloudSearchReadClient, you added the patchReturnFields with this comment:
``` java
/* Don't like doing this but apparently jersey has problems with return-fields being in multivalued map */
```
t…