GoLang MongoCollection::deleteIndexes

request it (301)
GoLang replacement for PHP's MongoCollection::deleteIndexes [edit | history]



Do you know a GoLang replacement for PHP's MongoCollection::deleteIndexes? Write it!

PHP MongoCollection::deleteIndexes

PHP original manual for MongoCollection::deleteIndexes [ show | php.net ]

MongoCollection::deleteIndexes

(PECL mongo >=0.9.0)

MongoCollection::deleteIndexesDelete all indices for this collection

Description

public array MongoCollection::deleteIndexes ( void )

Parameters

This function has no parameters.

Return Values

Returns the database response.

Examples

Example #1 MongoCollection::deleteIndexes() example

This example demonstrates how to delete all indexes from a collection and the response to expect.

<?php

$collection 
$mongo->my_db->articles;
$response $collection->deleteIndexes();
print_r($response);

?>

The above example will output something similar to:

Array
(
    [nIndexesWas] => 1
    [msg] => all indexes deleted for collection
    [ok] => 1
)

See Also