Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • Rubygems
  • Socket score

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc