You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
from CodernityDB.tree_index import TreeBasedIndex
|
|
|
|
|
|
class ProfileIndex(TreeBasedIndex):
|
|
_version = 1
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
kwargs['key_format'] = 'i'
|
|
super(ProfileIndex, self).__init__(*args, **kwargs)
|
|
|
|
def make_key(self, key):
|
|
return key
|
|
|
|
def make_key_value(self, data):
|
|
if data.get('_t') == 'profile':
|
|
return data.get('order', 99), None
|
|
|