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


Python Client.incr方法代码示例

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


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

示例1: increment

# 需要导入模块: from gluon.contrib.memcache.memcache import Client [as 别名]
# 或者: from gluon.contrib.memcache.memcache.Client import incr [as 别名]
 def increment(self,key,value=1,time_expire=300):
     newKey=self.__keyFormat__(key)
     obj=self.get(newKey)
     if obj:
         return Client.incr(self,newKey,value)
     else:
         self.set(newKey,value,time_expire)
         return value
开发者ID:rimbi,项目名称:bookcrawler,代码行数:10,代码来源:__init__.py

示例2: increment

# 需要导入模块: from gluon.contrib.memcache.memcache import Client [as 别名]
# 或者: from gluon.contrib.memcache.memcache.Client import incr [as 别名]
 def increment(self, key, value=1, time_expire=DEFAULT_TIME_EXPIRE):
     """ time_expire is ignored """
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj,(int,double,long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self,newKey,(time.time(),value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
开发者ID:ejmvar,项目名称:web2py,代码行数:17,代码来源:__init__.py

示例3: increment

# 需要导入模块: from gluon.contrib.memcache.memcache import Client [as 别名]
# 或者: from gluon.contrib.memcache.memcache.Client import incr [as 别名]
 def increment(self, key, value=1, time_expire='default'):
     """ time_expire is ignored """
     if time_expire == 'default':
         time_expire = self.default_time_expire
     newKey = self.__keyFormat__(key)
     obj = Client.get(self, newKey)
     if obj:
         if isinstance(obj,(int,float,long)):
             return Client.incr(self, newKey, value)
         else:
             value += obj[1]
             Client.set(self,newKey,(time.time(),value),
                        self.max_time_expire)
             return value
     else:
         Client.set(self, newKey, value, self.max_time_expire)
         return value
开发者ID:kristoh,项目名称:eve-metrics,代码行数:19,代码来源:__init__.py


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