Setup:
- I'm doing local desktop development, trying out MongoDB Compass query within Documents' tab.
- Created an index on a field, and querying WITHOUT the index field increments the '_id' index usage, this is fine. With every query WITH the index field, my custom index usage increment by 1, this is fine.
Problem Statement:
- However few days down the development, I noticed every query WITH the index field, now increments the index usage by 2.
Troubleshooting tried:
- Disconnect and reconnect mongoDB still persist.
- Changes made recently was added db collection due to Session. Suspect: does multiple collection causes this?
Alternative: Or it actually does not matter even the index usage increments by 2 for every query ran?