Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
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
edx
edx-platform
Commits
c0616aeb
Commit
c0616aeb
authored
10 years ago
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unneccesary uses of SON (which is slower than dict)
parent
a72cbfe6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
22 deletions
+14
-22
common/lib/xmodule/xmodule/modulestore/split_mongo/definition_lazy_loader.py
+0
-7
common/lib/xmodule/xmodule/modulestore/split_mongo/mongo_connection.py
+14
-15
No files found.
common/lib/xmodule/xmodule/modulestore/split_mongo/definition_lazy_loader.py
View file @
c0616aeb
from
opaque_keys.edx.locator
import
DefinitionLocator
from
bson
import
SON
class
DefinitionLazyLoader
(
object
):
...
...
@@ -25,9 +24,3 @@ class DefinitionLazyLoader(object):
loader pointer with the result so as not to fetch more than once
"""
return
self
.
modulestore
.
db_connection
.
get_definition
(
self
.
definition_locator
.
definition_id
)
def
as_son
(
self
):
return
SON
((
(
'block_type'
,
self
.
definition_locator
.
block_type
),
(
'definition'
,
self
.
definition_locator
.
definition_id
)
))
This diff is collapsed.
Click to expand it.
common/lib/xmodule/xmodule/modulestore/split_mongo/mongo_connection.py
View file @
c0616aeb
...
...
@@ -82,7 +82,6 @@ class MongoConnection(object):
host
=
host
,
port
=
port
,
tz_aware
=
tz_aware
,
document_class
=
son
.
SON
,
**
kwargs
),
db
...
...
@@ -167,10 +166,10 @@ class MongoConnection(object):
"""
case_regex
=
ur"(?i)^{}$"
if
ignore_case
else
ur"{}"
return
self
.
course_index
.
find_one
(
son
.
SON
([
(
key_attr
,
re
.
compile
(
case_regex
.
format
(
getattr
(
key
,
key_attr
)
)))
{
key_attr
:
re
.
compile
(
case_regex
.
format
(
getattr
(
key
,
key_attr
)))
for
key_attr
in
(
'org'
,
'course'
,
'run'
)
])
}
)
def
find_matching_course_indexes
(
self
,
branch
=
None
,
search_targets
=
None
):
...
...
@@ -182,7 +181,7 @@ class MongoConnection(object):
search_targets: If specified, this must be a dictionary specifying field values
that must exist in the search_targets of the returned courses
"""
query
=
son
.
SON
()
query
=
{}
if
branch
is
not
None
:
query
[
'versions.{}'
.
format
(
branch
)]
=
{
'$exists'
:
True
}
...
...
@@ -206,11 +205,11 @@ class MongoConnection(object):
from_index: If set, only update an index if it matches the one specified in `from_index`.
"""
self
.
course_index
.
update
(
from_index
or
son
.
SON
([
(
'org'
,
course_index
[
'org'
])
,
(
'course'
,
course_index
[
'course'
])
,
(
'run'
,
course_index
[
'run'
])
])
,
from_index
or
{
'org'
:
course_index
[
'org'
]
,
'course'
:
course_index
[
'course'
]
,
'run'
:
course_index
[
'run'
],
}
,
course_index
,
upsert
=
False
,
)
...
...
@@ -219,11 +218,11 @@ class MongoConnection(object):
"""
Delete the course_index from the persistence mechanism whose id is the given course_index
"""
return
self
.
course_index
.
remove
(
son
.
SON
([
(
'org'
,
course_index
[
'org'
])
,
(
'course'
,
course_index
[
'course'
])
,
(
'run'
,
course_index
[
'run'
])
])
)
return
self
.
course_index
.
remove
(
{
'org'
:
course_index
[
'org'
]
,
'course'
:
course_index
[
'course'
]
,
'run'
:
course_index
[
'run'
],
}
)
def
get_definition
(
self
,
key
):
"""
...
...
This diff is collapsed.
Click to expand it.
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