1.2.1 • Published 7 years ago

cf-text-search v1.2.1

Weekly downloads
102
License
-
Repository
github
Last release
7 years ago

cf-text-search

Add full-text search functionality onto cf services. Uses mongo's full text search functionality. Requires Mongo v2.6+.

Modifies the passed in query, adding the $text property as per http://docs.mongodb.org/manual/reference/operator/query/text/.

Installation

npm install cf-text-search

Usage

var textSearch = require('cf-text-search')

service.search = textSearch(service)

service.search('my search terms', function (err, results) {})

var search = textSearch(service)

  • service is a crud-service

search(searchTerms, query={}, options={}, cb)

  • searchTerms - a string which gets pass through to mongo's full text search, can be an array of strings
  • query - optional, an additional object query to filter the results
  • options - optional, any search options e.g. skip, limit
  • cb - the callback function, gets called with (err, results)

Score

The score of the document is returned on all documents as described here: http://docs.mongodb.org/manual/reference/operator/projection/meta/.

If using in conjunction with schemata, you'll need to add a score property to your schema so that it doesn't get stripped out.

Credits

Built by developers at Clock.

Licence

Licensed under the New BSD License

1.2.1

7 years ago

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.1.0

8 years ago