Mattias Pfeiffer
Mattias Pfeiffer
The parameter needed to control `wait_timeout` is named `acquisition_timeout` in Suo (https://github.com/nickelser/suo/blob/master/lib/suo/client/base.rb#L5) not `acquisition_lock`. Essentially the current `wait_timeout` option is a no-op; it doesn't control anything. This PR fixes this...
Hi, First of all, thanks for this awesome library! I'm trying to animate page changes, where a specific element needs a different appear/disappear animation than the rest of the page....
We're seeing an error with 'invalid_product', and digging into the issue, it seems that calling `loadProducts` multiple times does not add the new products to the cached products, but rather...
At the moment changing a method in a class descending from ContentfulModel::Base requires full reload of Rails environment. Example: ```ruby class TestModel < ContentfulModel::Base self.content_type_id = 'test' def title "This...
Closes #5
At the moment the default index name and the custom index name are the same in all environments. This causes updates triggered in eg. test mode to update data/indexes in...
It would be nice if Escargot per default didn't update ElasticSearch when running in test environment. At the moment it can be controlled by passing :updates => false conditionally, but...
Related to https://github.com/angelf/escargot/issues/issue/2: It would be nice if updating could be turned on in test-mode using a block, kinda like ThinkingSphinx does it: ThinkingSphinx::Test.run do # Run code that specifically...
From readme: elastic_index :mapping_options => .. Should be: elastic_index :mapping => ..
Related to #17. After the changes in #21, it seems that `#flush` is no longer flushing the cache, if the client is using the version 1 of the API. ```ruby...