Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how create an index 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 
Comment

create index 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" } } )
Comment

Create an index in 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" ] }
Comment

mongodb create index json

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

PREVIOUS NEXT
Code Example
Javascript :: promsie js 
Javascript :: make field un updatable mongoose 
Javascript :: react native communications 
Javascript :: ansel array sort 
Javascript :: Sequelize conditional shorthands 
Javascript :: open div with onClick element position 
Javascript :: Declare JSON Variable In Another File 
Javascript :: javascript patterns 
Javascript :: Remove # id From URL When Clicked On Href Link 
Javascript :: javascript get next month name 
Javascript :: phaser move towards object 
Javascript :: Gamification Details Component is not declared in any Angular module 
Javascript :: javascript cookies all together 
Javascript :: Object methods + Static methods javascript 
Javascript :: react sate and props 
Javascript :: Next / Sanity SSR client fetch 
Javascript :: push replacement getx 
Javascript :: Use Dynamic Scales 
Javascript :: react js css style border 
Javascript :: function titleCase 2 
Javascript :: Backbone View Template 
Javascript :: Backbone View El 
Javascript :: backbone view initialize 
Javascript :: Backbone Template Simple Example 
Javascript :: js check that interactive element is not focused 
Javascript :: code for random password generator in javascript 
Javascript :: npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 
Javascript :: js return 
Javascript :: javascript add css class 
Javascript :: ajax get request javascript 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =