How to store large numbers in MongoDB with Node.js

后端 未结 2 1615
谎友^
谎友^ 2020-12-18 23:26

I am using MongoDB with the native node driver and need to accurately store numbers that may be larger than the int maximum 2147483647. I will need to be able to increment t

2条回答
  •  一生所求
    2020-12-19 00:24

    You can now do this in Mongoose with the mongoose-long plug-in.

    require('mongoose-long')(mongoose);
    var SchemaTypes = mongoose.Schema.Types;
    var schema = new Schema({
        ...
        usedBandwidth: {type: SchemaTypes.Long, min: 0, default: 0}
    });
    

提交回复
热议问题