elucene
v0.3.2
Published
extended lucene query syntax with sorting, field selection, limits etc
Maintainers
Readme
elucene
Extended Lucene query syntax adding LIMIT, FIELDS, and SORT.
Installation
$ npm install eluceneExample
var parse = require('elucene');
var query = 'level:error SORT timestamp:asc LIMIT 2 5 FIELDS message code';
var ret = parse(query);yields:
{
string: 'level:error',
sort: ['timestamp:asc'],
limit: ['2', '5'],
fields: ['message', 'code']
}License
MIT
