Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
469507d4
Commit
469507d4
authored
Dec 02, 2013
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mongo index manipulation methods added.
parent
c294e033
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
0 deletions
+92
-0
Collection.php
extensions/mongo/Collection.php
+66
-0
Database.php
extensions/mongo/Database.php
+15
-0
CollectionTest.php
tests/unit/extensions/mongo/CollectionTest.php
+11
-0
No files found.
extensions/mongo/Collection.php
View file @
469507d4
...
...
@@ -33,6 +33,72 @@ class Collection extends Object
}
/**
* Creates an index on the collection and the specified fields
* @param array|string $columns column name or list of column names.
* If array is given, each element in the array has as key the field name, and as
* value either 1 for ascending sort, or -1 for descending sort.
* You can specify field using native numeric key with the field name as a value,
* in this case ascending sort will be used.
* For example:
* ~~~
* [
* 'name',
* 'status' => -1,
* ]
* ~~~
* @param array $options list of options in format: optionName => optionValue.
* @throws Exception on failure.
* @return boolean whether the operation successful.
*/
public
function
createIndex
(
$columns
,
$options
=
[])
{
if
(
!
is_array
(
$columns
))
{
$columns
=
[
$columns
];
}
$token
=
'Creating index at '
.
$this
->
mongoCollection
->
getName
()
.
' on '
.
implode
(
','
,
$columns
);
Yii
::
info
(
$token
,
__METHOD__
);
try
{
Yii
::
beginProfile
(
$token
,
__METHOD__
);
$keys
=
[];
foreach
(
$columns
as
$key
=>
$value
)
{
if
(
is_numeric
(
$key
))
{
$keys
[
$value
]
=
\MongoCollection
::
ASCENDING
;
}
else
{
$keys
[
$key
]
=
$value
;
}
}
$options
=
array_merge
([
'w'
=>
1
],
$options
);
$result
=
$this
->
mongoCollection
->
ensureIndex
(
$keys
,
$options
);
$this
->
tryResultError
(
$result
);
Yii
::
endProfile
(
$token
,
__METHOD__
);
return
true
;
}
catch
(
\Exception
$e
)
{
Yii
::
endProfile
(
$token
,
__METHOD__
);
throw
new
Exception
(
$e
->
getMessage
(),
(
int
)
$e
->
getCode
(),
$e
);
}
}
/**
* Drop indexes for specified column(s).
* @param string|array $columns column name or list of column names.
* @return array result.
*/
public
function
dropIndex
(
$columns
)
{
return
$this
->
mongoCollection
->
deleteIndex
(
$columns
);
}
/**
* Drops all indexes for this collection
* @return boolean whether the operation successful.
*/
public
function
dropAllIndexes
()
{
$result
=
$this
->
mongoCollection
->
deleteIndexes
();
return
!
empty
(
$result
[
'ok'
]);
}
/**
* @param array $condition
* @param array $fields
* @return \MongoCursor
...
...
extensions/mongo/Database.php
View file @
469507d4
...
...
@@ -61,4 +61,18 @@ class Database extends Object
{
$this
->
mongoDb
->
drop
();
}
/**
* Creates new collection.
* Note: Mongo creates new collections automatically on the first demand,
* this method makes sense only for the migration script or for the case
* you need to create collection with the specific options.
* @param string $name name of the collection
* @param array $options collection options in format: "name" => "value"
* @return \MongoCollection new mongo collection instance.
*/
public
function
createCollection
(
$name
,
$options
=
[])
{
return
$this
->
mongoDb
->
createCollection
(
$name
,
$options
);
}
}
\ No newline at end of file
tests/unit/extensions/mongo/CollectionTest.php
View file @
469507d4
...
...
@@ -172,4 +172,14 @@ class CollectionTest extends MongoTestCase
$this
->
assertNotEmpty
(
$result
[
0
][
'address'
]);
$this
->
assertNotEmpty
(
$result
[
0
][
'items'
]);
}
public
function
testCreateIndex
()
{
$collection
=
$this
->
getConnection
()
->
getCollection
(
'customer'
);
$columns
=
[
'name'
,
'status'
=>
\MongoCollection
::
DESCENDING
,
];
$this
->
assertTrue
(
$collection
->
createIndex
(
$columns
));
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment