2014-02-07 18:52:24 -05:00
|
|
|
mongoose = require('mongoose')
|
|
|
|
|
|
|
|
ScoringTaskSchema = new mongoose.Schema(
|
2014-02-08 17:21:37 -05:00
|
|
|
createdAt: {type: Date, expires: 3600} #expire document 1 hour after they are created
|
2014-02-07 18:52:24 -05:00
|
|
|
calculator: {type:mongoose.Schema.Types.ObjectId}
|
2014-02-08 13:11:43 -05:00
|
|
|
sentDate: {type: Number}
|
2014-02-07 18:52:24 -05:00
|
|
|
messageIdentifierString: {type: String}
|
|
|
|
calculationTimeMS: {type: Number, default: 0}
|
|
|
|
sessions: {type: Array, default: []}
|
|
|
|
)
|
|
|
|
|
2014-02-08 17:21:37 -05:00
|
|
|
#ScoringTaskSchema.set 'capped', 104857600 #100MB capped collection
|
2014-02-07 18:52:24 -05:00
|
|
|
module.exports = mongoose.model('scoringTask', ScoringTaskSchema)
|