3.0.1 • Published 4 years ago

unimodel-mongo v3.0.1

Weekly downloads
6
License
Apache-2.0
Repository
github
Last release
4 years ago

unimodel-mongo

Unimodel library for MongoDB.

Installation

$ npm install --save unimodel-mongo

Basic Usage

In this section, we will walk through basic usage for the library.

Initiate the default connection to mongo:

let mongo = require('unimodel-mongo');
mongo.connect('mongodb://localhost/mongotest');

Create an MongoModel:

let Animal = mongo.createModel(
  'Animal', // model/collection name
  { // common-schema specification
    animalId: { type: String, index: true, id: true },
    name: { type: String, index: true }
  }
);

Register the MongoModel with the default model registry:

mongo.model(Animal);

Use the model registry for CRUD operations on the model:

let Animal = mongo.model('Animal');
let animal = Animal.create({ animalId: 'dog-charles-barkley', name: 'Charles Barkley' });
animal.save().then(() => {/* after save! */});

Components

For more information on each of these components, see the generated docs.

MongoDb

MongoDb is a wrapper around a mongodb.Db instance, which ensures a connection is established before allowing operations against the MongoDB server.

MongoModel

A MongoModel is a wrapper around a mongodb.Collection instance, and provides the interface specified in unimodel.SchemaModel.

MongoDocument

A MongoDocument encapsulates the data that is stored inside MongoDB, and provides the interface specified in unimodel.SchemaDocument.

MongoError

This is an XError wrapper around mongodb.Error objects.

Quirks

Indexing Map Types

Mongo does directly support indexing map types. To alleviate this, UnimodelMongo implements hidden fields holding map index information, which is stored in a serialized BSON format.

Schema/Index Conversion

Schema/Index conversion works for both non-compound and compound indexes, as long as the compound index is accessing the same map.
For example the following:

let Animal = mongo.createModel('Animal', {
  name: { type: String, index: true }
  siblingAges: commonSchema.map({}, { age: Number }),
  beds: commonSchema.map({}, {
    averageSleepTime: { type: Number, index: true },
    longestSleepTime: Number,
    shortestSleepTime: Number
  })
});
Animal.index({ 'beds.averageSleepTime': 1, 'beds.longestSleepTime': 1 });
let dog = Animal.create({
  name: 'Charles',
  beds: {
    Couch: { averageSleepTime: 30 }
  }
});

Will save the following raw data into Mongo:

let rawDog = {
  name: 'Charles',
  beds: {
    Couch: { averageSleepTime: 30, longestSleepTiem: 55 }
  },
  '_mapidx_beds^averageSleepTime': [
    BSON.serialize([ 'Couch', 30 ]).toString()
  ],
  '_mapidx_beds^averageSleepTime^longestSleepTime': [
    BSON.serialize([ 'Couch', 30, 55 ]).toString()
  ]
};

But the following compound index would not be allowed, since it is across multiple maps:

Animal.index({ 'siblingAges.age': 1, 'beds.averageSleepTime': 1 });

Create Index in Background mode

To create index in background mode, pass an option of backgroundIndex set to true to connect() method, like this:

let mongo = require('unimodel-mongo');
mongo.connect({ backgroundIndex: true });

Automatically create indexes

By default, unimodel-mongo creates indexes automatically when setting up database. To disable this behavior, do:

let mongo = require('unimodel-mongo');
mongo.connect({ autoCreateIndex: false });

Query Conversion

For a query to properly convert, certain conditions must be met:

  • Map field must be indexed
  • Multiple maps/keys cannot be in the same block
  • No invalid query operators
  • Extra fields in the map cannot be queried along with the indexed fields

For non-compound indexes, the following query operators will be properly converted:

  • $eq
  • $lt
  • $lte
  • $gt
  • $gte So, the following:
let rawQuery = { 'beds.Couch.averageSleepTime': 30 };

Becomes:

let query = { '_mapidx_beds^averageSleepTime': BSON.serialize([ 'Couch', 30 ]).toString() };

For compound indexes, only $eq is allowed. So, the following:

let rawQuery = {
  'beds.Couch.averageSleepTime': 30
  'beds.Couch.longestSleepTime': 55
};

Becomes:

let query = {
  '_mapidx_beds^averageSleepTime^longestSleepTime': BSON.serialize([ 'Couch', 30, 55 ]).toString()
};

But the following examples will not be converted without breaking up the components into separate $and blocks:

let fail1 = { // Map field must be indexed
  'beds.Couch.longestSleepTime': 55
};
let fail2 = { // Multiple maps/keys cannot be in the same block
  'beds.Couch.averageSleepTime': 30
  'beds.Floor.longestSleepTime': 55
};
let fail3 = { // No invalid query operators
  'beds.Couch.averageSleepTime': 30
  'beds.Floor.longestSleepTime': { $lt: 55 }
};
let fail4 = { // Extra fields in the map cannot be queried along with the indexed fields
  'beds.Couch.averageSleepTime': 30
  'beds.Couch.longestSleepTime': 55,
  'beds.Couch.shortestSleepTime': 5
};
3.0.1

4 years ago

3.0.0

4 years ago

2.2.5

4 years ago

2.2.4

4 years ago

2.2.3

4 years ago

2.2.2

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

1.2.16

5 years ago

2.1.4

5 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

1.2.15

6 years ago

1.2.14

6 years ago

1.2.13

7 years ago

1.2.12

7 years ago

1.2.11

7 years ago

1.2.10

7 years ago

1.2.9

7 years ago

1.2.8

7 years ago

1.2.7

7 years ago

1.2.6

7 years ago

1.2.5

7 years ago

1.2.4

7 years ago

1.2.3

7 years ago

1.2.2

7 years ago