मेरा मानना है कि यह मानकर काम करेगा कि url
आपके द्वारा संशोधित की जा रही अनुक्रमणिका के साथ संग्रह का नाम शामिल है:
client.db.command('collMod', url,
index={'keyPattern': {'dateCreated':1},
'expireAfterSeconds': 3600}})
इसके समाधान की तलाश में किसी और के लिए मैं निम्नलिखित के साथ कामयाब रहा:
client.db.command('collMod', 'notifications',
index={'keyPattern': {'expr': 1},
'background': True,
'expireAfterSeconds': 604800})
जिसका परिणाम निम्न आउटपुट में होता है:
{u'expireAfterSeconds_old': 3888000,
u'expireAfterSeconds_new': 604800, u'ok': 1.0}