WriteConcernSettings | mongodb (original) (raw)
Interface WriteConcernSettings
interface WriteConcernSettings {
fsync?: boolean | 1;
j?: boolean;
journal?: boolean;
w?: W;
wtimeout?: number;
wtimeoutMS?: number;
}
Index
Properties
Optional
fsync
fsync?: boolean | 1
The file sync write concern.
Optional
j
j?: boolean
The journal write concern.
Optional
journal
journal?: boolean
The journal write concern
Optional
w
w?: W
The write concern
Optional
wtimeout
wtimeout?: number
The write concern timeout.
Optional
wtimeoutMS
wtimeoutMS?: number
The write concern timeout.