The ensureIndex
method in the Interactive Shell and ensure_index
in the python driver are different things, although the same word is used. Both the create_index
and ensure_index
method from the python driver create an index permanently.
Maybe one would use ensure_index
with a reasonable TTL in such a situation, because I am not sure if create_index
would recreate the index each time you call it. Recreation normally is not desired and it could be a heavy operation. But even ensure_index
(of the python or also ruby driver) could possibly recreate the index whenever the TTL is expired or when you call it from a different client instance or after a restart. I am not sure about this.
Maybe an even better possibility is to first check, using the method index_information()
, if the index already exists. If it already exists you would not create it again.
I am now demonstrating how the term ensure_index
(or ensureIndex
) is used with 2 different meanings:
1) It creates an index if it does not yet exist in the database
This is what the Interactive Shell method ensureIndex()
does:
http://www.mongodb.org/display/DOCS/Indexes#Indexes-Basics
Also the Node.JS MongoDB Driver
behaves this way:
https://github.com/mongodb/node-mongodb-native/blob/master/lib/mongodb/collection.js
(Search for function ensureIndex
in the file collection.js
.)
2) It creates an index if it is not in the 'driver cache'
The same identifier is used with a different meaning here, which I find confusing.
The python and the ruby driver store information in memory about indexes that were created recently, and they call this behaviour 'caching'.
They do not tell the database about this caching.
The result of this mechanism is, if you call create_index
or ensure_index
for the first time with a TTL value (time to live), then the driver will insert the index in the database and will remember this insertion and also store the TTL information in memory. What is cached here is the time and which index it was.
The next time you call ensure_index
with the same index of the same collection on the same driver instance, the ensure_index
command will only insert the index again, if TTL seconds have not yet passed since the first call.
If you call create_index
, the index will always be inserted, no matter how much time passed since the first call, and of course also if this is the first call.
This is the python driver, search for def ensure_index
in the file collection.py
:
https://github.com/mongodb/mongo-python-driver/blob/master/pymongo/collection.py
And the ruby driver, search for def ensure_index
in the file collection.rb
:
https://github.com/mongodb/mongo-ruby-driver/blob/master/lib/mongo/collection.rb
(Note that different client instances do not know about the caching of the others, this information is kept in memory only and it is per instance. If you restart the client application the new instance does not know about the old 'cached' index inserts. Also other clients do not know, they do not tell each other.)
I was not yet able to fully understand, what happens in the db, when the python driver or the ruby driver insert an index that is already there. I would suspect they do nothing in this case, which makes more sense and would also match the behaviour of the Interactive Shell
and the JS driver.