“Создайте индекс mongodb” Ответ

Как создать индекс mongodb

db.collection.createIndex({age:1}) //single field asc index on age field
db.collection.createIndex({firstName:1,lastName:-1})//compound index on firstName asc and lastName desc
db.collection.createIndex({locations:1}) //given locations is an array then a multikey index will be created 
Kirk-Patrick Brown

Pimongo создать индекс

collection.create_index([('field_i_want_to_index', pymongo.TEXT)], name='search_index', default_language='english')
Tristan Biny

Создайте индекс в MongoDB

> db.col1.save({'colors': ['red','blue']})
> db.col1.ensureIndex({'colors':1})

> db.col1.find({'colors': 'red'})
{ "_id" : ObjectId("4ccc78f97cf9bdc2a2e54ee9"), "colors" : [ "red", "blue" ] }
> db.col1.find({'colors': 'blue'})
{ "_id" : ObjectId("4ccc78f97cf9bdc2a2e54ee9"), "colors" : [ "red", "blue" ] }
Careful Chamois

Создайте индекс mongodb

//Create a Single-Key Index if All Queries Use the Same, Single Key
db.products.createIndex( { "category": 1 } )
// Create Compound Indexes to Support Several Different Queries
db.products.createIndex( { "category": 1, "item": 1 } )
//Index Use and Collation
db.myColl.createIndex( { category: 1 }, { collation: { locale: "fr" } } )
Tiny Coders

mongodb создать индекс json

{
	"v": 1,
	"unique": false,
	"key": {
		"name": 1
	},
	"name": "name_1",
	"ns": "test.users",
	"background": true
}
Vishal

Ответы похожие на “Создайте индекс mongodb”

Вопросы похожие на “Создайте индекс mongodb”

Больше похожих ответов на “Создайте индекс mongodb” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования