is it advised to created two separate indexes for the query to filter on one field and sort on another?

StackOverflow https://stackoverflow.com/questions/9059941

문제

I have a query that's something like the following

find( { a : { $gt: 3 } } ).sort( { b : -1 } )

Is it advised to create an index for field a and b separately?

도움이 되었습니까?

해결책

No, with compound index query will work faster:

db.items.ensureIndex({a:1, b:-1});

Also you can make sure that your query use index with explain command.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top