Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mongoose-fuzzy-search
Advanced tools
Mongoose plugin which adds fuzzy search capabilities on a Model based on trigrams sequence similarity
npm i --save mongoose-fuzzy-search
import fuzzy from 'mongoose-fuzzy-search';
const schema = new mongoose.Schema('User', {
firstname: String,
lastname: String
});
// add the plugin to the model and specify new fields on your schema to hold the trigrams projected
schema.plugin(fuzzy, {
fields:{
lastname_tg: 'lastname', // equivalent to (doc) => doc.get('lastname')
fullname_tg: (doc) => [doc.get('firstname'), doc.get('lastname') ].join(' ')
}
})
const User = mongoose.model('User', schema);
const user = new User({
firstname: 'Laurent',
lastname: 'Renard',
})
await user.save();
The saved document will be:
{
"firstname": "Laurent",
"lastname": "Renard",
"lastname_tg":[" r"," re","ren","ena","nar","ard","rd ","d "],
"fullname_tg":[" l"," la","lau","aur","ure","ren","ent","nt ","t "," r"," re","ren","ena","nar","ard","rd ","d "]
}
Note: when using a string, it is equivalent to a function returning the value of the document at the matching path.
The fuzzy
static method returns a Aggregate matching the documents which have at least one matching trigram with the query and their similarity score. You can then decide to extend the pipeline: filter out, sort them, etc
const result = await User.fuzzy('renart') // (.sort(), etc)
// > [{ document: <the document>, similiarity: <the similarity score> }]
The similarity score is calculated by dividing the size of the intersection set between the query and the document field trigrams, and the size of the trigrams set for the query.
When passing a string, the pipeline calculate the similarity for each trigram field and return the mean. However, you can combine various queries and give different weights to each of them:
const results = await User.fuzzy({
lastname_tg: {
searchQuery: 'Renard'
},
fullname_tg: {
searchQuery: 'repnge',
weight: 20
}
});
This plugin does not:
This plugin does:
save
and insertMany
middleware in order to update the trigram fields on your documents on insert/update.This plugin is adapted for searches when relative strings length difference does not matter much (ideal for short string like emails, names, titles, etc), when the strings have no or very little semantic (like names etc).
Otherwise, you might consider using another solution such as the native mongodb text index or a different database
FAQs
fuzzy search based on trigrams for mongoose odm
The npm package mongoose-fuzzy-search receives a total of 1,408 weekly downloads. As such, mongoose-fuzzy-search popularity was classified as popular.
We found that mongoose-fuzzy-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.