Rroonga
has_scope
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Rroonga
We haven't tracked posts mentioning Rroonga yet.
Tracking mentions began in Dec 2020.
has_scope
-
For GET requests - When do you create a new endpoint and when would you use a query param for the backend to decide what data to give back?
I use has_scope and it's typically handled in the index with querystring filters e.g. ?user=1 (or ?users[]=1 if multiple users). I do also add convenience routes for common filters, though, e.g. /users/1/likes.
-
Best way to filter an index page.
The has_scope gem (https://github.com/heartcombo/has_scope) is a nice middleground between ransack and multiple if-statements.
-
Dealing with basic requests / params
I recommend the `has_scope` gem approach https://github.com/heartcombo/has_scope
What are some alternatives?
ransack - Object-based searching.
textacular - Textacular exposes full text search capabilities from PostgreSQL, and allows you to declare full text indexes. Textacular will extend ActiveRecord with named_scope methods making searching easy and fun!
scoped_search - Easily search you ActiveRecord models with a simple query language that converts to SQL.
Thinking Sphinx - Sphinx/Manticore plugin for ActiveRecord/Rails
Searchkick - Intelligent search made easy
Elasticsearch Rails - Elasticsearch integrations for ActiveModel/Record and Ruby on Rails
Sunspot - Solr-powered search for Ruby objects
pg_search - pg_search builds ActiveRecord named scopes that take advantage of PostgreSQL’s full text search
Searchlogic - Searchlogic provides object based searching, common named scopes, and other useful tools.