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


Python RiakObject.reload方法代码示例

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


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

示例1: get

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import reload [as 别名]
    def get(self, key, r=None, pr=None, timeout=None, include_context=None,
            basic_quorum=None, notfound_ok=None):
        """
        Retrieve an object or datatype from Riak.

        :param key: Name of the key.
        :type key: string
        :param r: R-Value of the request (defaults to bucket's R)
        :type r: integer
        :param pr: PR-Value of the request (defaults to bucket's PR)
        :type pr: integer
        :param timeout: a timeout value in milliseconds
        :type timeout: int
        :param include_context: if the bucket contains datatypes, include
           the opaque context in the result
        :type include_context: bool
        :param basic_quorum: whether to use the "basic quorum" policy
           for not-founds
        :type basic_quorum: bool
        :param notfound_ok: whether to treat not-found responses as successful
        :type notfound_ok: bool
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>` or
           :class:`~riak.datatypes.Datatype`
        """
        if self.bucket_type.datatype:
            return self._client.fetch_datatype(self, key, r=r, pr=pr,
                                               timeout=timeout,
                                               include_context=include_context,
                                               basic_quorum=basic_quorum,
                                               notfound_ok=notfound_ok)
        else:
            obj = RiakObject(self._client, self, key)
            return obj.reload(r=r, pr=pr, timeout=timeout,
                              basic_quorum=basic_quorum,
                              notfound_ok=notfound_ok)
开发者ID:serenabiodec,项目名称:riak-python-client,代码行数:37,代码来源:bucket.py

示例2: get_binary

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import reload [as 别名]
 def get_binary(self, key, r=None):
     """
     Retrieve a binary/string object from Riak.
     @param string key - Name of the key.
     @param int r - R-Value of the request (defaults to bucket's R)
     @return RiakObject
     """
     obj = RiakObject(self._client, self, key)
     obj._encode_data = False
     r = self.get_r(r)
     return obj.reload(r)
开发者ID:PharkMillups,项目名称:riak-python-client,代码行数:13,代码来源:bucket.py

示例3: get_binary

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import reload [as 别名]
    def get_binary(self, key, r=None):
        """
        Retrieve a binary/string object from Riak.

        :param key: Name of the key.
        :type key: string
        :param r: R-Value of the request (defaults to bucket's R)
        :type r: integer
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        obj = RiakObject(self._client, self, key)
        obj._encode_data = False
        r = self.get_r(r)
        return obj.reload(r)
开发者ID:thanhnamit,项目名称:riak-python-client,代码行数:16,代码来源:bucket.py

示例4: get

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import reload [as 别名]
    def get(self, key, r=None, pr=None):
        """
        Retrieve a JSON-encoded object from Riak.

        :param key: Name of the key.
        :type key: string
        :param r: R-Value of the request (defaults to bucket's R)
        :type r: integer
        :param pr: PR-Value of the request (defaults to bucket's PR)
        :type pr: integer
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        obj = RiakObject(self._client, self, key)
        return obj.reload(r=r, pr=pr)
开发者ID:Atilla,项目名称:riak-python-client,代码行数:16,代码来源:bucket.py

示例5: get

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import reload [as 别名]
    def get(self, key, r=None, pr=None, timeout=None):
        """
        Retrieve an object from Riak.

        :param key: Name of the key.
        :type key: string
        :param r: R-Value of the request (defaults to bucket's R)
        :type r: integer
        :param pr: PR-Value of the request (defaults to bucket's PR)
        :type pr: integer
        :param timeout: a timeout value in milliseconds
        :type timeout: int
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        obj = RiakObject(self._client, self, key)
        return obj.reload(r=r, pr=pr, timeout=timeout)
开发者ID:ThoughtLeadr,项目名称:riak-python-client,代码行数:18,代码来源:bucket.py


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