当前位置: 首页>>代码示例>>Python>>正文


Python ES.index_relations方法代码示例

本文整理汇总了Python中nefertari.elasticsearch.ES.index_relations方法的典型用法代码示例。如果您正苦于以下问题:Python ES.index_relations方法的具体用法?Python ES.index_relations怎么用?Python ES.index_relations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在nefertari.elasticsearch.ES的用法示例。


在下文中一共展示了ES.index_relations方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: on_after_delete

# 需要导入模块: from nefertari.elasticsearch import ES [as 别名]
# 或者: from nefertari.elasticsearch.ES import index_relations [as 别名]
def on_after_delete(mapper, connection, target):
    from nefertari.elasticsearch import ES
    request = getattr(target, '_request', None)
    model_cls = target.__class__
    es = ES(model_cls.__name__)
    obj_id = getattr(target, model_cls.pk_field())
    es.delete(obj_id, request=request)
    es.index_relations(target, request=request)
开发者ID:numb3r3,项目名称:nefertari-sqla,代码行数:10,代码来源:signals.py

示例2: on_post_save

# 需要导入模块: from nefertari.elasticsearch import ES [as 别名]
# 或者: from nefertari.elasticsearch.ES import index_relations [as 别名]
def on_post_save(sender, document, **kw):
    """ Add new document to index or update existing. """
    from nefertari.elasticsearch import ES
    common_kw = {'request': getattr(document, '_request', None)}
    created = kw.get('created', False)
    if created:
        es = ES(document.__class__.__name__)
        es.index(document.to_dict(), **common_kw)
    elif not created and document._get_changed_fields():
        es = ES(document.__class__.__name__)
        es.index(document.to_dict(), **common_kw)
        es.index_relations(document, nested_only=True, **common_kw)
开发者ID:oleduc,项目名称:nefertari-mongodb,代码行数:14,代码来源:signals.py

示例3: index_object

# 需要导入模块: from nefertari.elasticsearch import ES [as 别名]
# 或者: from nefertari.elasticsearch.ES import index_relations [as 别名]
def index_object(obj, with_refs=True, **kwargs):
    from nefertari.elasticsearch import ES
    es = ES(obj.__class__.__name__)
    es.index(obj.to_dict(), **kwargs)
    if with_refs:
        es.index_relations(obj, **kwargs)
开发者ID:numb3r3,项目名称:nefertari-sqla,代码行数:8,代码来源:signals.py

示例4: index_object

# 需要导入模块: from nefertari.elasticsearch import ES [as 别名]
# 或者: from nefertari.elasticsearch.ES import index_relations [as 别名]
def index_object(obj, with_refs=True, **kwargs):
    es = ES(obj.__class__.__name__)
    es.index(obj, **kwargs)
    if with_refs:
        es.index_relations(obj, **kwargs)
开发者ID:geniusproject,项目名称:nefertari-sqla,代码行数:7,代码来源:signals.py


注:本文中的nefertari.elasticsearch.ES.index_relations方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。