Socket
Socket
Sign inDemoInstall

solr-synonyms

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    solr-synonyms

Parse Solr/ElasticSearch synonyms files into JavaScript objects.


Version published
Weekly downloads
28
decreased by-52.54%
Maintainers
1
Install size
51.3 kB
Created
Weekly downloads
 

Readme

Source

node-solr-synonyms

Parse Solr/ElasticSearch synonyms files into JavaScript objects. You can then replace tokens with their synonyms easily.

Info on synonyms file format http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.SynonymFilterFactory

Installation

npm install solr-synonyms

Usage

var synonyms = require('solr-synonyms');

Now you have access to the api.

API

synonyms.parse(inputString[, ignoreCase = true, expand = false])

Returns an object which maps the keys to arrays of strings.

synonyms.replace(tokens, synonyms)

  • tokens: An array of strings.
  • synonyms: An object which maps words to synonyms, e.g. the output of synonyms.parse.

Returns a new array where tokens have been replaced by their synonyms.

Example output

Given this input

# blank lines and lines starting with pound are comments.

#Explicit mappings match any token sequence on the LHS of "=>"
#and replace with all alternatives on the RHS.  These types of mappings
#ignore the expand parameter in the schema.
#Examples:
i-pod, i pod => ipod,
sea biscuit, sea biscit => seabiscuit

#Equivalent synonyms may be separated with commas and give
#no explicit mapping.  In this case the mapping behavior will
#be taken from the expand parameter in the schema.  This allows
#the same synonym file to be used in different synonym handling strategies.
#Examples:
ipod, i-pod, i pod
foozball , foosball
universe , cosmos

# If expand==true, "ipod, i-pod, i pod" is equivalent to the explicit mapping:
ipod, i-pod, i pod => ipod, i-pod, i pod
# If expand==false, "ipod, i-pod, i pod" is equivalent to the explicit mapping:
ipod, i-pod, i pod => ipod

#multiple synonym mapping entries are merged.
foo => foo bar
foo => baz
#is equivalent to
foo => foo bar, baz

with expand = false

{
	'i-pod': ['ipod', 'i-pod', 'i pod'],
	'i pod': ['ipod', 'i-pod', 'i pod'],
	'ipod': ['ipod', 'i-pod', 'i pod'],
	'sea biscuit': ['seabiscuit'],
	'sea biscit': ['seabiscuit'],
	'foosball': ['foozball'],
	'foozball': ['foozball'],
	'universe': ['universe'],
	'cosmos': ['universe'],
	'foo': ['foo bar', 'baz']
}

with expand = true

{
	'i-pod': ['ipod', 'i-pod', 'i pod'],
	'i pod': ['ipod', 'i-pod', 'i pod'],
	'ipod': ['ipod', 'i-pod', 'i pod'],
	'sea biscuit': ['seabiscuit'],
	'sea biscit': ['seabiscuit'],
	'foozball': ['foozball', 'foosball'],
	'foosball': ['foozball', 'foosball'],
	'universe': ['universe', 'cosmos'],
	'cosmos': ['universe', 'cosmos'],
	'foo': ['foo bar', 'baz']
}

Keywords

FAQs

Last updated on 09 Oct 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