Socket
Socket
Sign inDemoInstall

orm-mysql-fts

Package Overview
Dependencies
36
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    orm-mysql-fts

ORM MySQL Full-Text Search support


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
3.00 MB
Created
Weekly downloads
 

Readme

Source

ORM MySQL Full-Text Search Plugin

This plugin adds FTS support for the MySQL driver of ORM.

Dependencies

Of course you need orm to use it. Other than that, no more dependencies.

Install

npm install orm-mysql-fts

DBMS Support

  • MySQL

Usage

Model.match(property1, property2, ...).against(expression [ , alias ])

alias is an alias for the MATCH (..) AGAINST (..) expression and by default is "score". By default the query will be ordered descending by this alias. Only matched rows will be returned (HAVING score > 0).

Example

var orm = require("orm");
var fts = require("orm-mysql-fts");

orm.connect("mysql://username:password@host/database", function (err, db) {
	if (err) throw err;

	db.use(fts);

	var Person = db.define("person", {
		name      : String,
		surname   : String,
		age       : Number
	});

	Person.match("name").against("john").limit(10).run(function (err, people) {
		// .against() returns a ChainFind, you can use .limit() , .where() ..
		// (by default it orders by best match)
	});
});

Keywords

FAQs

Last updated on 24 Apr 2013

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc