acts_as_indexed icon indicating copy to clipboard operation
acts_as_indexed copied to clipboard

Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app

Results 20 acts_as_indexed issues
Sort by recently updated
recently updated
newest added

Hi, I have a RefineryCMS project updated to latest stable version (2.1.3) and after integrate my tests with [parallel_tests](https://github.com/grosser/parallel_tests) and zeus (using [zeus-parallel_tests](https://github.com/sevos/zeus-parallel_tests)), this error is happening randomly on different...

Fixes #61 When updating to Ruby 2.5, Fixnum has been deprecated and eventually removed. Some formatting was also off and I fixed that. I also suggest outside of this PR...

Upgraded to Ruby 2.5.1, seeing this deprecation warning ``` /Users/randallreedjr/.rvm/gems/ruby-2.5.1@screenslate/gems/acts_as_indexed-0.8.3/lib/acts_as_indexed/class_methods.rb:177: warning: constant ::Fixnum is deprecated ``` As of Ruby 2.4.0, [Fixnum and Bignum are unified into Integer](https://www.ruby-lang.org/en/news/2016/12/25/ruby-2-4-0-released/).

Is it possible to clear all the index data to reindex files, or somehow to force reindexing? The problem, why I need this, is described here: https://github.com/refinery/refinerycms-search/pull/64#issuecomment-234805600 If i just...

Makes the matching score available for use inside the instance.

If you want to do a search over multiple models then you need the ranking number returned with each result.

Deprecation warnings with Rails 4.0.8 and ActiveRecord 4.0.8 when using find_with_index. **This code:** `my_search_results = Post.find_with_index('my search query')` **will cause the following deprecation warnings:** DEPRECATION WARNING: ActiveRecord::Base#with_scope and #with_exclusive_scope are...

Consider the following model: ``` class Category < ActiveRecord::Base acts_as_indexed :fields => [:name, :description], :if => Proc.new { |c| c.products.count > 0 } has_many :products end ``` If you create...

Hi, We use [RefineryCMS-blog](https://github.com/refinery/refinerycms-blog) which is a simple engine within [RefineryCMS](https://github.com/refinery/refinerycms). `acts_as_indexed` is used for indexing posts, comments and categories. For example, a `Post` has the declaration ([code snippet](https://github.com/refinery/refinerycms-blog/blob/87ddcf983d10/app/models/refinery/blog/post.rb#L22)): ```...

A bit of a work in progress so feel free to discuss this with me (first of all it needs a test!). Added a new paginator, the 'generic paginator' which...

feature