Fergie's Inverted Index
This is an inverted index library. There are many like it, but this one is Fergie's.
Throw JavaScript objects at the index and they will become retrievable by their properties using promises and map-reduce (see examples)
This lib will work in node and also in the browser
Getting started
Initialise and populate an index
import { InvertedIndex } from 'fergies-inverted-index'
const { PUT, AND, BUCKETS, FACETS, OR, NOT, OBJECT, GET } = new InvertedIndex(ops)
PUT([ ]).then(doStuff)
Query the index
AND(|'land:SCOTLAND', 'colour:GREEN']).then(result)
AND([
{
FIELD: 'land'
VALUE: 'SCOTLAND'
}, {
FIELD: 'colour',
VALUE: 'GREEN'
}
]).then(result)
AND(['land:SCOTLAND', 'colour:GREEN']).then(OBJECT).then(result)
OR(['land:SCOTLAND', 'land:IRELAND']).then(result)
AND([
'land:SCOTLAND',
OR(['colour:GREEN', 'colour:BLUE'])
]).then(result)
NOT(
GET('land:SCOTLAND'),
GET('colour:GREEN', 'colour:RED').
).then(result)
MAX('population').then(result)
BUCKETS(
{
FIELD: ['year'],
VALUE: {
LTE: 2010
}
},
{
FIELD: ['year'],
VALUE: {
GTE: 2010
}
}
).then(result)
FACETS({
FIELD: 'year'
}).then(result)
(See the tests for more examples.)
API
InvertedIndex(options)
Returns an InvertedIndex
instance
import { InvertedIndex } from 'fergies-inverted-index'
const ii = InvertedIndex({ name: 'myIndex' })
options
options | default value | notes |
---|
caseSensistive | true | |
stopwords | [] | stopwords |
doNotIndexField | [] | All field names specified in this array will not be indexed. They will however still be present in the retrieved objects |
storeVectors | true | Used for among other things deletion. Set to false if your index is read-only |
Level | Defaults to ClassicLevel for node and BrowserLevel for web | Specify any abstract-level compatible backend for your index. The defaults provide LevelDB for node environments and IndexedDB for browsers |
AGGREGATION_FILTER(aggregation, query, trimEmpty).then(result)
The aggregation (either FACETS or BUCKETS) is filtered by the
query. Use boolean trimEmpty
to show or hide empty buckets
Promise.all([
FACETS({
FIELD: ['drivetrain', 'model']
}),
AND(['colour:Black'])
])
.then(([facetResult, queryResult]) =>
AGGREGATION_FILTER(facetResult, queryResult, true)
)
.then(result)
AND([ ...token ]).then(result)
AND
returns a set of object IDs that match every clause in the query.
For example- get the set of objects where the land
property is set
to scotland
, year
is 1975
and color
is blue
AND([ 'land:scotland', 'year:1975', 'color:blue' ]).then(result)
BUCKET( token ).then(result)
Bucket returns all object ids for objects that contain the given token
BUCKET(
{
FIELD: ['year'],
VALUE: {
LTE: 2010
}
}).then(result)
BUCKETS( ...token ).then(result)
Every bucket returns all object ids for objects that contain the given token
BUCKETS(
{
FIELD: ['year'],
VALUE: {
LTE: 2010
}
},
{
FIELD: ['year'],
VALUE: {
GTE: 2010
}
}
).then(result)
CREATED().then(result)
Returns the timestamp that indicates when the index was created
CREATED().then(result)
DELETE([ ...id ]).then(result)
Delete all objects by id. The result indicated if the delete operation
was successful or not.
DELETE([ 1, 2, 3 ]).then(result)
DISTINCT(options).then(result)
DISTINCT
returns every value in the db that is greater than equal
to GTE
and less than or equal to LTE
(sorted alphabetically)
For example- get all names between h
and l
:
DISTINCT({ GTE: 'h', LTE: 'l' }).then(result)
EXIST( ...id ).then(result)
Indicates whether the documents with the given ids exist in the index
EXIST(1, 2, 3).then(result)
EXPORT().then(result)
Exports the index to text file. See also IMPORT.
EXPORT().then(result)
FACETS( ...token ).then(result)
Creates an aggregation for each value in the given range. FACETS
differs from BUCKETS in that FACETS creates an aggregation per value
whereas BUCKETS can create aggregations on ranges of values
FACETS(
{
FIELD: 'colour'
},
{
FIELD: 'drivetrain'
}
).then(result)
FIELDS().then(result)
FIELDS
returns all available fields
FIELDS().then(result)
GET(token).then(result)
GET
returns all object ids for objects that contain the given
property, aggregated by object id.
For example to get all Teslas do:
GET('Tesla').then(result)
Perhaps you want to be more specific and only return documents that contain Tesla
in the make
FIELD
GET('make:Tesla').then(result)
which is equivalent to:
GET({
FIELD: 'make',
VALUE: 'Tesla'
}).then(result)
You can get all cars that begin with O
to V
in which case you could do
GET({
FIELD: 'make',
VALUE: {
GTE: 'O',
LTE: 'V'
}
}).then(result)
IMPORT(exportedIndex).then(result)
Reads in an exported index and returns a status.
See also EXPORT.
IMPORT(exportedIndex).then(result)
LAST_UPDATED().then(result)
Returns a timestamp indicating when the index was last updated.
LAST_UPDATED().then(result)
MAX(token).then(result)
Get the highest alphabetical value in a given token
For example- see the highest price:
MAX('price')
MIN(token).then(result)
Get the lowest alphabetical value in a given token
For example- see the lowest price:
MIN('price')
NOT(A, B).then(result)
Where A and B are sets, NOT
Returns the ids of objects that are
present in A, but not in B.
For example:
NOT(
global[indexName].GET({
FIELD: 'sectorcode',
VALUE: {
GTE: 'A',
LTE: 'G'
}
}),
'sectorcode:YZ'
)
OBJECT([ ...id ]).then(result)
Given an array of ids, OBJECT
will return the corresponding
objects.
AND([
'board_approval_month:October',
global[indexName].OR([
'sectorcode:LR',
global[indexName].AND(['sectorcode:BC', 'sectorcode:BM'])
])
])
.then(OBJECT)
.then(result)
OR([ ...tokens ]).then(result)
Return ids of objects that are in one or more of the query clauses
For example- get the set of objects where the land
property is set
to scotland
, or year
is 1975
or color
is blue
AND([ 'land:scotland', 'year:1975', 'color:blue' ]).then(result)
PUT([ ...documents ]).then(result)
Add documents to index
For example:
PUT([
{
_id: 8,
make: 'BMW',
colour: 'Silver',
year: 2015,
price: 81177,
model: '3-series',
drivetrain: 'Petrol'
},
{
_id: 9,
make: 'Volvo',
colour: 'White',
year: 2004,
price: 3751,
model: 'XC90',
drivetrain: 'Hybrid'
}
]).then(result)
SORT(resultSet).then(result)
Example:
GET('blue').then(SORT)
STORE
Property that points to the underlying level store
test