You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

lucene-query-string-builder

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucene-query-string-builder

Build Lucene queries by defining lucene query builders

0.0.1
Source
npm
Version published
Weekly downloads
451
7.13%
Maintainers
1
Weekly downloads
 
Created
Source

Lucene Query String Builder

More easily build your lucene string queries using small and pure functions.

The usage section shows how you can leverage this lib for your purposes.

Use cases

Imagine having an API that leverages lucene for performing queries on the (indexed) database. In that case you might want to generate lucene query strings on the client/front end.

Installation

bower install lucene-query-builder --save

# or

npm install lucene-query-builder --save

Usage

Let's see how you can use lucene query string builder to define lucene query strings with simple JavaScript functions.

Assuming that the lucene global variable contains the lucene functions. This would be the default when loaded into a browser.


var findUserLuceneQueryString = lucene.builder(function(data){

  // just to make the example more readable;
  var _ = lucene;

  _.group(_.and(
    _.field('eye-color', _.term(data.eye.color)),
    _.field('age', _.range(data.age.min, data.age.max))
  ));

});

var luceneQueryString = findUserLuceneQueryString({
  eye: { color: 'brown'},
  age: {
    min: 10,
    max: 20
  }
});

luceneQueryString == "( eye-color: "brown" AND age:{ 10 TO 20 } )" // => true

The list of all the functions available are. They are based on the specifications which can be found here:

https://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Terms

  • terms

  • term

  • field

  • or

  • and

  • not

  • group

  • range;

  • fuzzy;

  • proximity

  • required

  • builder

Contributing

  • Make sure your dependencies are installed by running: npm run-script setup

  • Then start editing the index.js

  • You should add and/or edit the tests in test/index.js

  • Run your tests and see what happens

When performing pull request make sure to not add the dist files. This is left to the maintainers(s) of the library. They are responsible to version and avoid code breakages.

You can perform your own build with npm run-script build to make a lucine.js and a lucine.min.js

notice

I am currently not using this repository in any of my projects. Therefore I am looking for people that are able to make LQSB more useful for them and others.

Road map

  • split all functions into separate files
  • escaping lucene query syntax characters in the term(s) function
  • tasks for running tests on dist/lucene.js and dist/lucene.min.js

License

The MIT License (MIT)

Keywords

lucene

FAQs

Package last updated on 26 Apr 2016

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