Giter VIP home page Giter VIP logo

Comments (7)

scottwrobinson avatar scottwrobinson commented on July 1, 2024

As of the current version of Camo (v0.8.0), there is not a way to set a unique index within the schema declaration. Although, it is still possible to set an index using the underlying node-mongodb-native database object.

One way to do this would be:

var getClient = require('camo').getClient;

// Retrieve the underlying MongoDB object with getClient().driver()
getClient().driver().collection('users').createIndex('email', {unique: true}, function(err, indexName) {
    // Index created with name indexName
});

I'm hoping to add this feature to the schema declaration within the next few weeks or so, so hopefully you won't have to deal with this mess for too long.

Let me know if you have any questions.

Scott

from camo.

ReneHollander avatar ReneHollander commented on July 1, 2024

Hello!

Thanks for your answer. I forgot to add that I use NeDB, but I should be able to figure it out by myself.
The mess is not a problem for me for now. I am just doing a small throw away project.

Rene

from camo.

ReneHollander avatar ReneHollander commented on July 1, 2024

I tried to create the index with help of the NeDB docs (https://github.com/louischatriot/nedb#indexing). But I discovered that camo.getClient().driver() returns an empty object. I made sure that the actual call is done after the db is connected.

from camo.

scottwrobinson avatar scottwrobinson commented on July 1, 2024

Hi Rene,

Ok, so I looked in to this a bit more and remembered that Camo does lazy creation of collections. So the NeDB collection object won't be created until after you try to load, save, or delete something, which means the object returned by camo.getClient().driver() will be empty until after you load/save/delete.

I'll put this on the todo list to figure out a better way to do it and let you know when it's fixed. Thanks!

Scott

from camo.

Globik avatar Globik commented on July 1, 2024

Any plan to update?) It's node 4.0 today. Generators, promisses, arrow functions out the box.

from camo.

scottwrobinson avatar scottwrobinson commented on July 1, 2024

Yup, I'll be testing and upgrading the engine field in package.json today
or tomorrow.

Scott

Any plan to update?) It's node 4.0 today. Generators, promisses, arrow
functions out the box.


Reply to this email directly or view it on GitHub
#12 (comment).

from camo.

scottwrobinson avatar scottwrobinson commented on July 1, 2024

FYI, this was added back in v0.10.0. You can specify the 'unique' constraint like this:

class Company extends Document {
    constructor() {
        super();
        this.name = {
            type: String,
            unique: true
        };
    }
}

from camo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.