Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steverandy/mongoid_text_search
Simple full text search for use with Mongoid.
https://github.com/steverandy/mongoid_text_search
Last synced: 8 days ago
JSON representation
Simple full text search for use with Mongoid.
- Host: GitHub
- URL: https://github.com/steverandy/mongoid_text_search
- Owner: steverandy
- Created: 2011-01-31T03:11:02.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-04-30T06:43:12.000Z (over 13 years ago)
- Last Synced: 2024-11-21T17:49:46.449Z (about 1 month ago)
- Language: Ruby
- Homepage:
- Size: 102 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Overview
This gem is used in addition to Mongoid gem (up to version 2.0.0.beta.20), to provide simple full text search function. It takes one or many string or array of strings fields. The strings will be cleaned up and transform into array so they can be indexed. Searching later on will simply partially matches the input keywords with the indexed keywords in the arrays.
## Installation
gem "mongoid_text_search"## Getting Started
Add the following into your model.
include Mongoid::TextSearch
Specify which field(s) to be included as the keywords. Fields should be string or array of strings.
text_search_for_fields :title, :description
The above will create a new field called keywords.
## Available Class Methods
Convert any string into an array of clean keywords.
generate_clean_keywords(string)
Search documents with an array of keywords to match.
Use the previous method to generate an array of clean keywords from a string.with_keywords(array)