You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

mongoid_text_search

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongoid_text_search

0.1.6
bundlerRubygems
Version published
Maintainers
1
Created
Source

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)

FAQs

Package last updated on 30 Apr 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts