[options]
それらがリストにない場合、利用可能なすべてをどのように見つけるのですか?
mongoose
forの場合nodejs
:
http://mongoosejs.com/docs/api.html#schema_Schema-index
例は役に立ちますが、多くの場合完全ではありません。options
2 番目のパラメーターとして渡すことができるすべての範囲を追跡するにはどうすればよいでしょうか?
それは読みます:
Schema#index(fields, [options])
Defines an index (most likely compound) for this schema.
show code
Parameters:
fields <Object>
[options] <Object>
Example
schema.index({ first: 1, last: -1 }, { unique: true })
いくつかの場所では、すべてのオプションが詳細に説明されています。これは素晴らしいことです。例:
http://mongoosejs.com/docs/api.html#connection_Connection-openSet
ありがとう。
また、この素敵な質問/回答を見つけました。