/mongolastic

Mongolastic - Mongoose middleware for elasticsearch integration

Primary LanguageJavaScriptMIT LicenseMIT

Build Status

NPM

NPM

NPM version

mongolastic

Mongolastic is a mongoose middleware which provides automatic index functionality for mongoose objects. Unlike other libs like elmongo this module is based on the official elasticsearch javascript api and provides full access to the api via mongolastic.connection.

It should be registered as plugin and a modelname should be provided.

var mongolastic = require('mongolastic');
var mongoose = require('mongoose');

mongoose.connect('mongodb://localhost/mongolastic');
var CatSchema = mongoose.Schema({
  name: String,
  date: {type: Date, default: Date.now}
});

// modelname is important to provide the correct index for the model
CatSchema.plugin(mongolastic.plugin, {modelname: 'cat'});
var cat = mongoose.model('cat', CatSchema);

Additional new functions

  • References can be automatically saved as denormalized (populated) version in the elasticsearch index.
  • Recursive population of documents
  • Render a specific mapping for document types
  • Sync function
  • Sync function as much more performant bulk operation

By the way... mongolastic is a core component of the upcoming molecuel CMS. https://github.com/molecuel

License (MIT)

Copyright (c) 2014 Dominic Böttger <http://inspirationlabs.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.