ankane/searchkick

Intelligent search made easy

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 39 minutes ago
Added to GitGenius on September 9th, 2026
Created on July 15th, 2013
Open Issues & Pull Requests: 9 (+0)
GitHub issues: Enabled
Number of forks: 761
Total Stargazers: 6,721 (+0)
Total Subscribers: 96 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 4.0 hours
Mean response time: 140.4 days
90th percentile: 576.3 days
Tracked items: 42

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Work labelled "bug report" is answered fastest, typically in under an hour, while "feature request" waits about 4 days. Only 7% of issues opened in the past year have been closed. Three people close 93% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 4
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 158 days
Stale 30+ days: 4
Stale 90+ days: 3

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • feature request (26)
  • bug report (18)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Searchkick is a Ruby gem that brings intelligent search capabilities to Rails applications by integrating with Elasticsearch or OpenSearch.

The tool solves the problem of implementing effective full-text search without requiring developers to learn complex search server query languages. It works by indexing your data in Elasticsearch or OpenSearch and providing a SQL-like query interface that feels natural to Rails developers. The search engine learns from user behavior over time, improving result relevance as more searches occur. It handles common search challenges automatically: stemming so tomatoes matches tomato, accent normalization for jalapeno matching jalapeño, whitespace flexibility, misspelling tolerance through fuzzy matching, and custom synonym support.

Searchkick suits Rails applications using Active Record or Mongoid that need search functionality beyond simple database queries. It works well for projects ranging from small to large scale, having been battle-tested in production at Instacart. The tool supports reindexing without downtime, per-user result personalization, autocomplete, spelling suggestions, and multiple languages. Developers should choose it if they want search that improves with usage patterns and prefer a familiar query syntax over learning Elasticsearch DSL directly, though the tool does expose the full Elasticsearch and OpenSearch Search API for advanced use cases where maximum flexibility is needed.

The project maintains active engagement with its codebase, regularly updating to support new versions of its underlying search engines. It provides comprehensive documentation covering common patterns like querying, indexing, and deployment scenarios. The tool includes testing utilities to make search functionality testable in application test suites. Companion projects like Searchjoy for search analytics and Autosuggest for query suggestions indicate ongoing ecosystem development around the core library.